Deployment project in VisualStudio: Is the output in Debug or Releaase mode?
- by serhio
I have a solution in Visual studio containing a winform project(WinProj) and a deployment project for WinProj.
I added to the deployment project the primary output from WinProj. Does it be compiled in Debug or Release mode?
I am asking because in the WinProj code I have conditional precompiler statements
#if DEBUG
throw;
#endif
will or not be considered this code in the setup project?