Visual Studio .NET 2003 deletes my config-file

  • Thread starter Thread starter Einar Høst
  • Start date Start date
E

Einar Høst

Hi,

I must be doing something wrong: Visual Studio .NET 2003 insists on deleting
my app.exe.config file from the debug folder whenever I compile my project
?!

Why?

- Einar
 
The contents of the bin folders (destination of the build) are erased and
rewritten each time you do a build.

To add an app config file. Right click on your project, add a new item, then
choose application configuration. This will place a file named app.config
into your solution that will be copied to your bin folders with the
rpopername when ever you do a build.
 
Ray Cassick (Home) said:
The contents of the bin folders (destination of the build) are erased and
rewritten each time you do a build.

Thanks, that solves my problem :-)
 
Back
Top