How do I build deployment project without un-signing my assemblies? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T09:09:10Z http://stackoverflow.com/feeds/question/300405 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/300405/how-do-i-build-deployment-project-without-un-signing-my-assemblies 0 How do I build deployment project without un-signing my assemblies? CindyH 2008-11-18T22:39:11Z 2009-07-16T19:05:29Z <p>I'm not very experienced with builds - this may be really easy! I have a simple application with a simple deployment project. I went to the directory where the release-compiled versions of the DLLs are, signed all of them (verisign), and then went to the deployment project, chose Build (not REbuild), and it recompiled all my assemblies and now they aren't signed any more. Can I keep the nice easy deployment project and still have signed assemblies, or do I have to create the MSI a different way? Thanks!</p> http://stackoverflow.com/questions/300405/how-do-i-build-deployment-project-without-un-signing-my-assemblies/300601#300601 1 Answer by Martin v. Löwis for How do I build deployment project without un-signing my assemblies? Martin v. Löwis 2008-11-18T23:56:00Z 2008-11-18T23:56:00Z <p>I haven't tried, but... Don't make the deployment project depend on the application project. Instead, manually add the output of the application to the deployment. As a consequence, no automatic build should be triggered.</p> http://stackoverflow.com/questions/300405/how-do-i-build-deployment-project-without-un-signing-my-assemblies/300643#300643 0 Answer by Jason Slocomb for How do I build deployment project without un-signing my assemblies? Jason Slocomb 2008-11-19T00:14:48Z 2008-11-19T00:14:48Z <p>Try signing the assemblies as an intermediate step of your build. </p> <p>One way to do this is to add a dummy project that has a build event that signs your assemblies. Make this project the last step before you create your MSI package.</p>