我正在尝试在安装程序中设置一些用户配置。例如,我正在使用:
Properties.Settings.Default.mapURL = txtBoxMapURL.Text.Trim();
Properties.Settings.Default.Save();
在安装程序类调用的 Windows 窗体中。但是,在启动应用程序时,该设置不会持续存在。下次我尝试在安装程序中配置设置时,它会将正确的值读入文本框中。所以它将设置保存在某个地方,我只是很难弄清楚在哪里。
它没有保存在 C:\program files\[manufacturer]\[product]\[product].exe.config 中,也没有保存在 C:\Documents and Settings\[User]\Local Settings\Application Data\[Manufacturer ][产品].exe\user.config。
知道安装程序在哪里临时存储设置,有没有办法在安装过程中存储用户设置?