views:

33

answers:

2

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
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
You can always add the files in your bin folder individually. Every time you build the setup it will use the new files.
Koekiebox
A: 

I cleared the test project. And the problem solve.

Roy