From: Griffin C. <gc...@us...> - 2005-01-27 05:22:13
|
Update of /cvsroot/dotnetmock/dotnetmock In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv503 Modified Files: DotNetMock.build Added Files: dotnetmock.public Log Message: - Updated 'AssemblyInfo' files to delay sign assemblies. - Added public key to delay sign - updated build file to turn off verification when building Index: DotNetMock.build =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.build,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** DotNetMock.build 5 Jan 2005 14:03:32 -0000 1.13 --- DotNetMock.build 27 Jan 2005 05:22:02 -0000 1.14 *************** *** 131,134 **** --- 131,152 ---- </fileset> </copy> + <exec program="sn" commandline="-Vr ${build.dir}/DotNetMock.Core.dll"/> + <exec program="sn" commandline="-Vr ${build.dir}/DotNetMock.dll"/> + <exec program="sn" commandline="-Vr ${build.dir}/DotNetMock.Framework.dll"/> + <exec program="sn" commandline="-Vr ${build.dir}/DotNetMock.MbUnitNamespace.dll"/> + <exec program="sn" commandline="-Vr ${build.dir}/DotNetMock.csUnitNamespace.dll"/> + <exec program="sn" commandline="-Vr ${build.dir}/DotNetMock.NUnit.dll"/> + </target> + <target name="sign-assemblies" depends="build" failonerror="true"> + <delay-sign keyfile="dotnetmock.key" verbose="true"> + <targets> + <include name="${build.dir}/DotNetMock.Core.dll"/> + <include name="${build.dir}/DotNetMock.dll"/> + <include name="${build.dir}/DotNetMock.Framework.dll"/> + <include name="${build.dir}/DotNetMock.MbUnitNamespace.dll"/> + <include name="${build.dir}/DotNetMock.csUnitNamespace.dll"/> + <include name="${build.dir}/DotNetMock.NUnit.dll"/> + </targets> + </delay-sign> </target> <target name="package" description="Collects and packs up the distribution" depends="buildMSDN"> --- NEW FILE: dotnetmock.public --- (This appears to be a binary file; contents omitted.) |