views:

67

answers:

4

I inherited a simple C# project without a App.config file. I need it now. How should I create one? manually or VS 2008 can do it for me?

A: 

You can do it either way. Right-click the project, select Add New Item, and then click on the Application Configuration item.

Simple.

Cyberherbalist
+3  A: 

In VS 2008, right click the project, click Add -> new Item. Find 'Application Configuration File' under Templates. Click 'Add' and your done.

Kelly
A: 

You can do either; manually create it in the root of the project, or just add it using New Item and choosing application config file.

John Weldon
A: 

Have a look here

Maurizio Reginelli