C# soultion directory structure

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Under my project directories there are bin and obj dirs both with Debug
dirs. Both debug dirs my app's have exe files in them. Why this redundancy?
Which is "better"? If I have to pick one to deploy to my customers which
one do I pick?

Thanks!
 
The "bin" folder contain the files to distribute. You should however
compile with the release configuration before distributing.

HTH

Sylvain Larin
 
Back
Top