Where is user.config loaded from during Visual Studio debugging

僤鯓⒐⒋嵵緔 提交于 2019-12-10 16:38:40

问题


I have an application that reads from a user settings file, typically stored in Users/{username}/AppData/Local/{publisher}/{app}/{version}/user.config. I want to test making changes directly to the file, not through the Visual Studio properties editor.

I found this answer to a different question that points to where the application is supposedly loading the file from, but it doesn't seem to exist when I check during a debug session in Visual Studio.

For example, when I run the following in the Immediate window when stopped on a breakpoint, it fails to find the file.

System.IO.File.Exists(System.Configuration.ConfigurationManager.OpenExeConfiguration(System.Configuration.ConfigurationUserLevel.PerUserRoamingAndLocal).FilePath) //returns false

My reason for wanting to find this file during debugging is that I have received reports of the config file being corrupted and crashing the application in production. I'm sure that I can return that file to a default state, but I want to actually reproduce the problem in a debug environment.

How can I find the settings file loaded by Visual Studio?


回答1:


I'm not quite sure what changed between when I posted this question and now, but today the code in my question returns true. But to answer the specific question I asked, the user.config file was in a very similar path to a standard installed application.

Standard application:

Users/{username}/AppData/Local/{publisher}/{app}/{version}/user.config

Visual Studio debug application:

Users/{username}/AppData/Local/{publisher}/{app}.vshost.exe{some_hash_value}/{version}/user.config



来源:https://stackoverflow.com/questions/35778528/where-is-user-config-loaded-from-during-visual-studio-debugging

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!