I know that there is some questions about this already but none of them have helped me.
So I have a .NET c# application that have settings in its app.config like this :
<userSettings>
<MyApp.Client.Main.Properties.Settings>
<setting name="LoginSwitchUserRestart" serializeAs="String">
<value>False</value>
</setting>
<setting name="SkinName" serializeAs="String">
<value>Blue</value>
</setting>
</MyApp.Client.Main.Properties.Settings>
</userSettings>
This is supose the be saved in a file located here C:\Users\Me\AppData\Roaming\MyCompany_Healthcare_Systems_A\MyApp.vshost.exe_Url_fch0ekqas3qxil4p11igflywwa1klvng\5.8.0.0\user.config
acording to this code :
var config = System.Configuration.ConfigurationManager.OpenExeConfiguration(System.Configuration.ConfigurationUserLevel.PerUserRoaming);
MessageBox.Show(config.FilePath);
But there is no file? I also have several version of this application running both from within Visual Studio and outside as a release version but I can´t still find the setting file?
The operating system is Windows 10 64 bit.