Reputation: 1
I configured TFS to build my solution in Release|All CPU. When build is done out of 3 project, 1 appears to be in release (no pdb file) while two others in debug (pdf files are present). Any ideas why? I want all to be in Release. Thanks.
Upvotes: 0
Views: 77
Reputation: 19348
Go to solution configuration manager and make sure that all projects are built to Release|any CPU. Also, check compile options that it produces or doesn't produce PDB file. The truth is, you want "pdb" even for release but you can keep it aside, so later you can debug production code as needed.
Upvotes: 0
Reputation: 4155
Check your Build Configuration in the Solution - It is possible to configure your "Release" config so that certain projects don't build, or build in different configurations. This is handy when you want certain projects to build slightly differently for each config. It sounds like your solution config is messed up:
Upvotes: 1