Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I find the application.exe.config file in my C# project?

Where can I find the application.exe.config file in my C# project?

I'm attempting to enable the JIT debugger but cannot find the config file.

thanks!

like image 980
Brian Sweeney Avatar asked Mar 24 '09 19:03

Brian Sweeney


People also ask

Where is the application config file?

The application configuration file usually lives in the same directory as your application. For web applications, it is named Web. config. For non-web applications, it starts life with the name of App.

Where is config file stored?

Most global config files are located in the /etc directory. The /etc/ directory feels more like a filesystem and has many sub-directories, each having related config files. The following is a list of the most useful of these sub-directories: /etc/X11/ – xorg specific config files.

Where is app config file in C#?

In Solution Explorer, right-click the project node, and then select Add > New Item. The Add New Item dialog box appears. Expand Installed > Visual C# Items. In the middle pane, select the Application Configuration File template.

What is the path of the directory in which the configuration file for installed application in Windows stored in?

The Configuration Directory Location on Windows By default, the Acrolinx configuration directory is created in the directory: C:\ProgramData\Acrolinx\ServerConfiguration\. The ProgramData directory is the Windows standard for storing application settings independently from the installation directory.


1 Answers

It's usually in the root of your project. If its not there you might not have one. You can add it by right clicking on your project and add new item.

It's called App.Config at this point. Once you compile it is then renamed to AppName.exe.Config, and placed with your build output.

like image 126
JoshBerke Avatar answered Sep 28 '22 19:09

JoshBerke