anthony
anthony

Reputation: 41098

Deploying a directory hierarchy alongside an exe

I am deploying an application using ClickOnce. I can successfully include additional runtime dependencies (as long as they are files) by adding them to my exe assembly project with a Build Action of "Content". These files are placed alongside my exe when the application is installed via ClickOnce.

I need do the same thing for a folder hierarchy. How can I achieve this?

Upvotes: 1

Views: 107

Answers (1)

benPearce
benPearce

Reputation: 38333

Have you application check and create it at startup.

Upvotes: 1

Related Questions