Revision: 134
http://sourceforge.net/p/mwinapi/code/134
Author: schierlm
Date: 2015-12-11 17:45:12 +0000 (Fri, 11 Dec 2015)
Log Message:
-----------
AssemblyConfigurationAttribute now contains the build configuration
% pushed from GitHub
% Author: fk <enoon1 at arcor.de>
% Date: Thu Dec 10 10:46:47 2015 +0100
Modified Paths:
--------------
trunk/ManagedWinapi/Properties/AssemblyInfo.cs
Modified: trunk/ManagedWinapi/Properties/AssemblyInfo.cs
===================================================================
--- trunk/ManagedWinapi/Properties/AssemblyInfo.cs 2015-12-11 17:45:04 UTC (rev 133)
+++ trunk/ManagedWinapi/Properties/AssemblyInfo.cs 2015-12-11 17:45:12 UTC (rev 134)
@@ -8,7 +8,13 @@
// associated with an assembly.
[assembly: AssemblyTitle("ManagedWinapi")]
[assembly: AssemblyDescription("")]
-[assembly: AssemblyConfiguration("")]
+
+#if DEBUG
+[assembly: AssemblyConfiguration("Debug")]
+#else
+[assembly: AssemblyConfiguration("Release")]
+#endif
+
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("ManagedWinapi")]
[assembly: AssemblyCopyright("Copyright © 2005, 2006, 2007, 2008, 2009, 2010, 2011 Michael Schierl")]
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|