I've got an exe that reads some values from its local app.config
file:
TargetDate = ConfigurationManager.AppSettings.Get("ThresholdDate");
// and try to update with the current date
ConfigurationManager.AppSettings.Set("ThresholdDate", "2011-09-01");
I thought it worked once, but am not seeing the app.config
getting updated at all now.