Making builds/releases

  • Thread starter Thread starter Yuriy Zubarev
  • Start date Start date
Y

Yuriy Zubarev

Hello everyone,

I've been Java developer for a long time and one of the thing I learnt
is an importance of stringent build process. Java has de facto
standards on directories structure, package names, build routines
(ANT, for example) for test and release versions of a product and so
on.

I was wondering if there are standards/suggestions for .NET
development using either internal facilities of Visual Studio or
external tools or both. It would be interesting to read articles on
this topic if such exist.

Thank you,
Yuriy Zubarev
 
You may notice the following structures for windows applications and control
libraries
<ProjectName>
<ProjectName>\bin
<ProjectName>\bin\Debug
<ProjectName>\bin\Release
<ProjectName>\obj
<ProjectName>\obj\Debug
<ProjectName>\obj\Release

See also Projet Properties and Build Configuration Manager.
 
Back
Top