Signing Assemblies using VS sln builds
In my current sytem, we use MSBUILD to handle our assemblies. And I can still do that today with TC. But I had been looking at taking advantage of the VS sln build step types.
In our current system the MSBUILD task uses AssemblyOriginatorKeyFile=<somefile.snk>;DelaySign=false in order to sign my production release assemblies.
How would I do this in the new VS sln build step?
-MarkV01
Please sign in to leave a comment.
Please see
http://blogs.msdn.com/b/msbuild/archive/2005/09/26/474079.aspx
Here they suggest to add two msbuild properties:
SignAssembly=true
AssemblyOriginatorKeyFile=mykey.snk
You may set those propertise in 6. Properties and Environment Variables section of build configuration settings.