I've deployed a Windows Forms application. On my local development PC, there is a settings.settings
file which contains all the app's settings.
I'm aware as-per this question and others like it, that a User.config file gets created in c:\Users\username\Local Settings\AppData\Local\...
However, I need to change a default setting, so that when users start it for the first time, the default settings are different than when we initially deployed the app.
So the first time a user runs the app, it creates their local copy of the file.
What does it base that on? Is there a default copy of the file somewhere, or is it compiled into the .exe?
I need to get the default settings updated on an app that's deployed on several laptops remotely where I only have telephone support. If I have to recompile and republish then that needs to be as a last resort.