Are your customizable and non-customizable settings in different files?

Last updated by Brady Stroud [SSW] over 1 year ago.See history

There are three types of settings files that we may need to use in .NET :

  1. App.Config/Web.Config is the default .NET settings file, including any settings for the Microsoft Application Blocks (eg. the Exception Management Block and the Configuration Management Block). These are for settings that dont change from within the application. In addition, System.Configuration classes dont allow writing to this file.
  2. ToolsOptions.Config (an SSW standard) is the file to hold the users own settings, that are users can change in the Tools - Options.

    Eg. ConnectionString, EmailTo, EmailCC

    Note: We read and write to this using Microsoft Configuration Application Block. If we don't use this Block we would store it as a plain XML file and read and write to it using System.XML classes. The idea is that if something does go wrong when you are writing to this file, at least the App.Config would not be affected. Also, this separates our settings (which are few) from the App.Config (which usually has a lot of stuff that we really dont want a user to stuff around with).

  3. UserSession.Config (an SSW standard). These are for additional setting files that the user cannot change.

    e.g. FormLocation, LastReportSelected

    Note: This file is over writable (say during a re-installation) and it will not affect the user if the file is deleted.

We open source. Powered by GitHub