views:

1112

answers:

3

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!

+1  A: 

It should be in \bin\Debug or \bin\Release, right next to your compiled assembly.

Andrew Hare
+4  A: 

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.

JoshBerke
I think the OP is referring to the post-compilation application configuration file.
Andrew Hare
Could be, since he mentioned c# project I thought otherwise, btw both of us we have the complete answer
JoshBerke
+1  A: 

I had to learn that each project in the solution can have a settings file. But the one in the startup project is the one that becomes application.exe.config in your output folder.

Hauke