Deployment project in VisualStudio: Is the output in Debug or Releaase mode?

Posted by serhio on Stack Overflow See other posts from Stack Overflow or by serhio
Published on 2010-04-12T12:51:18Z Indexed on 2010/04/12 12:53 UTC
Read the original article Hit count: 255

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?

© Stack Overflow or respective owner

Related posts about .NET

Related posts about visual-studio-2005