Reputation:
i was wondering if i could access a folder inside the Resources folder of the application? i would make it to eliminate the use of the debug directory in storing files and to use the clickonce deployment.
I need your advices and suggestions. Thank you.
Upvotes: 0
Views: 439
Reputation: 31815
You can change where the project outputs it's build to. Right click on the Project's name and click properties then go to Build and down near the bottom it tells you where it will output the build to. If you're building it in debug, it usually goes to bin\Debug, release goes to \bin\Release, etc.
You can look here for information on the ClickOnce deployment.
Upvotes: 1