From: <gc...@us...> - 2002-10-11 00:24:42
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock In directory usw-pr-cvs1:/tmp/cvs-serv16044/DotNetMock Modified Files: AssemblyInfo.cs Added Files: DotNetMock.build Log Message: Added NAnt build files --- NEW FILE: DotNetMock.build --- <?xml version="1.0"?> <project name=".NET Mock Objects"> <description>Build file for main .NET Mock Objects module</description> <property name="debug" value="true"/> <property name="build.dir" value="build/"/> <property name="project.name" value="DotNetMock"/> <tstamp/> <target name="init" description="Setup environment"> <mkdir dir="${build.dir}" failonerror="false"/> </target> <target name="clean" description="Cleans environment to pre-build state"> <delete dir="${build.dir}" failonerror="false"/> <delete file="../lib/${project.name}.dll" failonerror="false"/> </target> <target name="build" description="Builds .NET Mock Object main module" depends="init"> <csc target="library" output="${build.dir}/${project.name}.dll" debug="${debug}"> <sources basedir="."> <includes name="**/*.cs"/> </sources> <references basedir="../lib"> <includes name="nunit.framework.dll" /> </references> </csc> <copy file="${build.dir}/${project.name}.dll" todir="../lib"/> </target> </project> Index: AssemblyInfo.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock/AssemblyInfo.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** AssemblyInfo.cs 21 Sep 2002 06:19:18 -0000 1.2 --- AssemblyInfo.cs 11 Oct 2002 00:24:37 -0000 1.3 *************** *** 55,58 **** // [assembly: AssemblyDelaySign(false)] ! [assembly: AssemblyKeyFile(@"..\..\..\dotnetmock.snk")] [assembly: AssemblyKeyName("")] --- 55,58 ---- // [assembly: AssemblyDelaySign(false)] ! [assembly: AssemblyKeyFile("")] [assembly: AssemblyKeyName("")] |