Reputation: 10009
When I am using clickonce, which files are published?
The ones from the bin or the obj directory?
Upvotes: 0
Views: 423
Reputation: 76021
Anything inside the obj directory is intermediate build artefacts, which can safely be discarded at any time.
Anything in the bin folder is the final result from the whole build process.
ClickOnce by default publishes all final build artefacts, with the exception of the symbols file. You can change what is published from the Publish tab in the project properties.
Upvotes: 4