All these dirs, debug,bin, etc..

  • Thread starter Thread starter Jeff
  • Start date Start date
J

Jeff

Hello
Can anyone suggest a good place/article to learn about the basic
configuration/structure of all the different directories that make up
a (forms/asp,etc.) project?
I create files in one place, then upon compilation many others are
created. How do I know what are final output files, used only for
debugging, etc etc.

Thanks
 
When you build the project the final output is stored in the bin\debug or
bin\release directory depending on your current build configuration. The
other directories such as obj are used by the ide.

You can change the place that final executables or DLLs are output to by
adjusting the project properties. Right click on the project within the
solution and select Properties. The dialog box contains all the project
build options including destination paths and so-on.

--
Bob Powell [MVP]
Visual C#, System.Drawing

Ramuseco Limited .NET consulting
http://www.ramuseco.com

Find great Windows Forms articles in Windows Forms Tips and Tricks
http://www.bobpowell.net/tipstricks.htm

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/faqmain.htm

All new articles provide code in C# and VB.NET.
Subscribe to the RSS feeds provided and never miss a new article.
 
Back
Top