OrElse
OrElse

Reputation: 10009

Which directory does clickonce publish?

When I am using clickonce, which files are published?

The ones from the bin or the obj directory?

Upvotes: 0

Views: 423

Answers (1)

Franci Penov
Franci Penov

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

Related Questions