| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?xml version="1.0" encoding="iso-8859-1"?>
- <!-- NAnt build file for System.Runtime.Serialization.Formatters.Soap.dll -->
- <project name="System.Runtime.Serialization.Formatters.Soap_test" default="build">
- <property name="debug" value="false"/>
- <property name="nunit_home" value="..\..\..\nunit20"/>
- <target name="build">
- </target>
- <target name="assemblies">
- <csc target="library" output="System.Runtime.Serialization.Formatters.Soap_test.dll" debug="${debug}">
- <arg value="/nowarn:1595"/>
- <arg value="/noconfig"/>
- <sources>
- <includes name="**/*.cs"/>
- <excludes name="AllTests.cs"/>
- <excludes name="TheTests.cs"/>
- <excludes name="main.cs"/>
- </sources>
- <references basedir="..\..\..\nunit20">
- <includes name="NUnit.Framework.dll"/>
- </references>
- <arg value="/r:.\System.Runtime.Serialization.Formatters.Soap.dll"/>
- </csc>
- </target>
- <target name="test" depends="assemblies">
- <exec program="..\..\..\nunit20\nunit-console.exe" commandline="System.Runtime.Serialization.Formatters.Soap_test.dll" failonerror="false"/>
- </target>
- <target name="clean">
- <delete file="System.Runtime.Serialization.Formatters.Soap.dll" failonerror="false"/>
- <delete file="System.Runtime.Serialization.Formatters.Soap_test.dll" failonerror="false"/>
- <delete file="System.Runtime.Serialization.Formatters.Soap_test.pdb" failonerror="false"/>
- </target>
- </project>
|