Tagged Questions
The applicationsettingsbase tag has no wiki summary.
6
votes
1answer
355 views
.NET ApplicationSettingsBase Should I call Upgrade() every time I load?
We have application settings derived from ApplicationSettingsBase. When we push a new version of our app we need to call
//
// Summary:
// Updates application settings to reflect a more ...
5
votes
3answers
1k views
FileNotFoundException in ApplicationSettingsBase
When debugging an application I always get the following error when break on exception is enabled in Visual Studio. This is really bugging me, since we work with break on exception. The funny thing ...
1
vote
0answers
232 views
Where does ApplicationSettingsBase save config files during unit testing?
Some background context:
I'm deriving from ApplicationSettingsBase to save custom sets of configuration settings in my application, and the manual testing is working fine, the config sets are being ...
1
vote
1answer
151 views
MVVM and SettingsBase
Hi i'm currently implement MVVM in a WPF app i'm developing. I implemented the ViewModel and the Views by using 2 separate projects. Only the View is referencing from the ViewModel. However, i've come ...
0
votes
2answers
242 views
Why adding custom objects to List<T> in ApplicationSettingsBase via constructor doesn't work?
This is pretty closely related to another SO question.
Using the example below, could someone explain to me why adding a new List<Foo> where each of Foo's properties are explicitly set causes ...
0
votes
1answer
562 views
.NET SettingsProvider/ApplicationSettingsBase caching
I'm looking at some code that uses the .NET System.Configuration.SettingsProvider and ApplicationSettingsBase to handle configuration.
We have a class that derives from SettingsProvider that uses a ...
0
votes
1answer
314 views
Why does ApplicationSettingsBase.Reset() empty the PropertyValues?
I thought the Reset() method repopulates the Settings with default values again, but it seems not to. How can I reload them with the default values?
private void ...
0
votes
4answers
2k views
Storing generic List<CustomObject> using ApplicationSettingsBase
I am trying to save a List<Foo> using ApplicationSettingsBase, however it only outputs the following even though the list is populated:
<setting name="Foobar" serializeAs="Xml">
...