From: <bo...@us...> - 2011-11-02 08:00:04
|
Revision: 498 http://xmlunit.svn.sourceforge.net/xmlunit/?rev=498&view=rev Author: bodewig Date: 2011-11-02 07:59:58 +0000 (Wed, 02 Nov 2011) Log Message: ----------- provide a strong name for .NET assemblies Modified Paths: -------------- trunk/xmlunit/xmlunit.nant.build Added Paths: ----------- trunk/xmlunit/xmlunit.snk Modified: trunk/xmlunit/xmlunit.nant.build =================================================================== --- trunk/xmlunit/xmlunit.nant.build 2011-11-02 07:46:52 UTC (rev 497) +++ trunk/xmlunit/xmlunit.nant.build 2011-11-02 07:59:58 UTC (rev 498) @@ -66,7 +66,7 @@ <attribute type="AssemblyDescriptionAttribute" value="Core Classes of XMLUnit for .NET" /> <attribute type="InternalsVisibleToAttribute" - value="${project::get-name()}-core.tests"/> + value="${project::get-name()}-core.tests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100fdec9d5858956ff10ff9cf39935441a7d4a216475a467e951ddd8fcce0b74443696680a6cfb58f8b1d96166acb76f9eae0431a223cecb30e224c21f30e57c457747f6ba176e6c22f48e105b200b458509b6de815cccdfc9ebe59ae4024c4b8659d2f2fcb65b1688f8327b10c96ed7e5f536ba6a1978ae86aca438439efbd6cb6"/> </attributes> </asminfo> <copy todir="${gen.src.dir}"> @@ -75,7 +75,7 @@ </fileset> </copy> <csc target="library" output="${bin.dir}/${project::get-name()}-core.dll" - debug="true" verbose="${csc.verbose}"> + debug="true" verbose="${csc.verbose}" keyfile="xmlunit.snk"> <sources basedir="${gen.src.dir}"> <include name="**/*.cs"/> </sources> @@ -86,7 +86,7 @@ depends="compile-core"> <csc target="library" output="${bin.dir}/${project::get-name()}-core.tests.dll" - debug="true" verbose="${csc.verbose}"> + debug="true" verbose="${csc.verbose}" keyfile="xmlunit.snk"> <references basedir="${bin.dir}"> <include name="${project::get-name()}-core.dll"/> <include name="${nunit.v2.assembly}"/> Added: trunk/xmlunit/xmlunit.snk =================================================================== (Binary files differ) Property changes on: trunk/xmlunit/xmlunit.snk ___________________________________________________________________ Added: svn:mime-type + application/octet-stream This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |