When I use the code
Properties.Settings.Default.Save();
to save my settings it writes the file to this path
%USERPROFILE%\AppData\Local\MyAppName\MyAppName.exe_Url_SomeWeirdCode\TheAppVersionNumber\user.config
For example
C:\Users\Username\AppData\Local\MyApp\MyApp.exe_Url_claumreyuxtgqul2vuc3couyu5tso2n0\1.0.0.0\user.config
How can I get the path to the app version folder (1.0.0.0) so I can write other stuff to it?
I am using .NET Framework 4.6.2 and Visual Studio 2017.