Michael
Michael

Reputation: 321

How do you get to you APP.CONFIG

I am working in VB.NET and I am familiar with working in the vb[design] view as well as regular vb. I am looking to view/edit my APP.CONFIG file how do I access this file? I am using Visual Studio 2008

Upvotes: 0

Views: 7572

Answers (2)

Kevin LaBranche
Kevin LaBranche

Reputation: 21078

You can add it a couple of ways, first by adding it via the new item dialog as you would a new class file, etc... OR by double clicking on the My Project Icon and going to your settings tab and adding settings. This will aso create the app.config.

Upvotes: 1

Midhat
Midhat

Reputation: 17810

The file should be in your project root directory. You can open it by double clicking it in the solution explorer. If the file is not there, you will need to add it using the add new item dialog (from the Project menu), and choosing "Application configuration file"

Upvotes: 2

Related Questions