|
From: <je...@us...> - 2007-05-18 21:06:20
|
Revision: 1382
http://cs-sdl.svn.sourceforge.net/cs-sdl/?rev=1382&view=rev
Author: jendave
Date: 2007-05-18 14:06:19 -0700 (Fri, 18 May 2007)
Log Message:
-----------
fix build order issue for NAnt build. NAnt build still needs work. Prebuild is broken
Modified Paths:
--------------
trunk/scsharp/prebuild.xml
Property Changed:
----------------
trunk/scsharp/
Property changes on: trunk/scsharp
___________________________________________________________________
Name: svn:ignore
- SCSharp.build
SCSharp.mds
SCSharp.sln
SCSharp.suo
+ SCSharp.build
SCSharp.mds
SCSharp.sln
SCSharp.suo
*.swp
Modified: trunk/scsharp/prebuild.xml
===================================================================
--- trunk/scsharp/prebuild.xml 2007-05-18 20:58:30 UTC (rev 1381)
+++ trunk/scsharp/prebuild.xml 2007-05-18 21:06:19 UTC (rev 1382)
@@ -26,7 +26,7 @@
<Files>
<File buildAction="Content">prebuild.xml</File>
</Files>
- <Project name="SCSharp" path="src/SCSharp" language="C#" type="WinExe" assemblyName="scsharp" rootNamespace="SCSharp" designerFolder="Properties" icon="App.ico">
+ <Project name="SCSharpLib" path="src/SCSharpLib" language="C#" type="Library" assemblyName="SCSharpLib" rootNamespace="SCSharp" designerFolder="Properties">
<Configuration name="Debug">
<Options>
<CompilerDefines>DEBUG;TRACE;CODE_ANALYSIS</CompilerDefines>
@@ -34,7 +34,7 @@
<AllowUnsafe>false</AllowUnsafe>
<OutputPath>bin/Debug</OutputPath>
<DebugInformation>true</DebugInformation>
- <XmlDocFile></XmlDocFile>
+ <XmlDocFile>SCSharpLib.xml</XmlDocFile>
<KeyFile>scsharp.snk</KeyFile>
<WarningLevel>4</WarningLevel>
<SuppressWarnings>1595</SuppressWarnings>
@@ -46,28 +46,26 @@
<OptimizeCode>true</OptimizeCode>
<AllowUnsafe>false</AllowUnsafe>
<OutputPath>bin/Release</OutputPath>
- <XmlDocFile></XmlDocFile>
+ <DebugInformation>false</DebugInformation>
+ <XmlDocFile>SCSharpLib.xml</XmlDocFile>
<KeyFile>scsharp.snk</KeyFile>
- <DebugInformation>false</DebugInformation>
<WarningLevel>1</WarningLevel>
<SuppressWarnings>1595</SuppressWarnings>
</Options>
</Configuration>
- <Reference name="System" />
+ <Reference name="System" />
<Reference name="System.Configuration" />
<Reference name="System.Drawing" />
- <Reference name="SCSharpLib" />
<Reference name="Tao.Sdl" localCopy="true" path="../../lib/net-2.0"/>
<Reference name="SdlDotNet" localCopy="true" path="../../lib/net-2.0"/>
<Reference name="ICSharpCode.SharpZipLib" localCopy="true" path="../../lib/net-2.0"/>
<Files>
<File buildAction="EmbeddedResource">App.ico</File>
- <File buildAction="Content" copyToOutput="PreserveNewest">App.config</File>
<Match buildAction="EmbeddedResource" subType="Designer" pattern="Resources.resx" recurse="true"/>
- <Match pattern="*.cs" recurse="true"/>
+ <Match path="." pattern="*.cs" recurse="true"/>
</Files>
</Project>
- <Project name="SCSharpLib" path="src/SCSharpLib" language="C#" type="Library" assemblyName="SCSharpLib" rootNamespace="SCSharp" designerFolder="Properties">
+ <Project name="SCSharp" path="src/SCSharp" language="C#" type="WinExe" assemblyName="scsharp" rootNamespace="SCSharp" designerFolder="Properties" icon="App.ico">
<Configuration name="Debug">
<Options>
<CompilerDefines>DEBUG;TRACE;CODE_ANALYSIS</CompilerDefines>
@@ -75,7 +73,7 @@
<AllowUnsafe>false</AllowUnsafe>
<OutputPath>bin/Debug</OutputPath>
<DebugInformation>true</DebugInformation>
- <XmlDocFile>SCSharpLib.xml</XmlDocFile>
+ <XmlDocFile></XmlDocFile>
<KeyFile>scsharp.snk</KeyFile>
<WarningLevel>4</WarningLevel>
<SuppressWarnings>1595</SuppressWarnings>
@@ -87,26 +85,28 @@
<OptimizeCode>true</OptimizeCode>
<AllowUnsafe>false</AllowUnsafe>
<OutputPath>bin/Release</OutputPath>
+ <XmlDocFile></XmlDocFile>
+ <KeyFile>scsharp.snk</KeyFile>
<DebugInformation>false</DebugInformation>
- <XmlDocFile>SCSharpLib.xml</XmlDocFile>
- <KeyFile>scsharp.snk</KeyFile>
<WarningLevel>1</WarningLevel>
<SuppressWarnings>1595</SuppressWarnings>
</Options>
</Configuration>
- <Reference name="System" />
+ <Reference name="System" />
<Reference name="System.Configuration" />
<Reference name="System.Drawing" />
+ <Reference name="SCSharpLib" localCopy="true"/>
<Reference name="Tao.Sdl" localCopy="true" path="../../lib/net-2.0"/>
<Reference name="SdlDotNet" localCopy="true" path="../../lib/net-2.0"/>
<Reference name="ICSharpCode.SharpZipLib" localCopy="true" path="../../lib/net-2.0"/>
<Files>
<File buildAction="EmbeddedResource">App.ico</File>
+ <File buildAction="Content" copyToOutput="PreserveNewest">App.config</File>
<Match buildAction="EmbeddedResource" subType="Designer" pattern="Resources.resx" recurse="true"/>
- <Match path="." pattern="*.cs" recurse="true"/>
+ <Match pattern="*.cs" recurse="true"/>
</Files>
</Project>
- <Project name="Tests" path="tests" language="C#" type="Library" assemblyName="SCSharpTests" rootNamespace="SCSharpTests" designerFolder="Properties">
+ <Project name="Tests" path="tests" language="C#" type="Library" assemblyName="SCSharpTests" rootNamespace="SCSharpTests" designerFolder="Properties">
<Configuration name="Debug">
<Options>
<CompilerDefines>DEBUG;TRACE;CODE_ANALYSIS</CompilerDefines>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|