Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I don't know what caused VS to start thinking it needs to publish my project, but now whenever I build it, I get several "Unable to apply publish properties for item 'blah'" warnings. How do I stop VS 2005's publishing facilities from working on my project completely? I use InstallShield so I have no use for VS's publishing system.

share|improve this question
What warning error codes are they? – RCIX Jun 12 '09 at 4:42
It doesn't have one. Here's the warning: i42.tinypic.com/210cbae.png – jasonh Jun 12 '09 at 16:51
1  
This happened to me after I cleaned up some unnecessary assembly references - the application files ClickOnce settings are not kept in synch automatically and require this attention. – Luke Puplett Sep 23 '10 at 22:12

1 Answer

up vote 38 down vote accepted

Open your project, select Project Properties->Publish(ing)->Application Files and click the reset all button. Does that help?

share|improve this answer
That did it! Thanks! – jasonh Jun 14 '09 at 6:04
You're welcome! – RCIX Jun 14 '09 at 6:49
9  
In case anyone lease wanders across this. I had a similar problem but didn't want to just reset all because I wanted to preserve the previous settings. So in the Application Files dialog, I checked "show on files" and it showed me missing files with a warning icon so I could delete manually. – yieldvs Dec 1 '11 at 23:11
I second yieldvs's comments, I would recommend not resetting all of them, instead click the 'Show all files' and select your reference. – JBickford Mar 6 '12 at 21:14
The reset-all button didn't help. After closing/re-opening the solution and re-running the application, the warnings return. @yieldvs' solution works. – PeterX Apr 18 at 0:13
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.