I'm using visual studio to build the setup project for my web application. The build failed because it seeks binary output at the bin\Debug\ folder while the binary I generated is actually under the bin folder. What can I do to fix this? Thanks in advance!
A:
Why don't you change the output to be bin\Debug in your project.
You can use the
Build->Configuration Manager->
to do this.
Koekiebox
2009-09-09 08:04:18
Yes, I can change that, But why I would like to change the setup project, but not the output of my project. Release debug binary is not a good practice.
Roy
2009-09-09 08:19:02
You can always add the files in your bin folder individually. Every time you build the setup it will use the new files.
Koekiebox
2009-09-09 08:52:07