Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable Publishing in MSBuild

Tags:

I have an application that I wrote in C# and build in VisualStudio. One day I was exploring the 'publish' tab in the project properties section just to see what it did. Now everytime I build my application, I get a whole bunch of files related to ClickOnce installers (*.application, *.deploy, etc.) that I don't really want anymore. How do I disable or otherwise stop these items from appearing when I build my project??

like image 692
A.R. Avatar asked Jul 12 '11 14:07

A.R.


1 Answers

I solved the problem by unchecking 'Sign ClickOnce Manifests' in the 'Signing' tab as well as 'Enable ClickOnce security settings' in the 'Security' tab.

like image 122
A.R. Avatar answered Oct 13 '22 02:10

A.R.