Changeset 1373
- Timestamp:
- 03/19/09 17:56:11 (16 years ago)
- Location:
- branches/New Persistence Exploration/Persistence
- Files:
-
- 7 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/New Persistence Exploration/Persistence/Persistence.sln
r1357 r1373 7 7 EndProject 8 8 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.PluginInfrastructure", "..\..\..\trunk\sources\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj", "{94186A6A-5176-4402-AE83-886557B53CCA}" 9 EndProject 10 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HeuristicLab.Persistence.GUI", "HeuristicLab.Persistence.GUI\HeuristicLab.Persistence.GUI.csproj", "{A9E282EA-180F-4233-B809-AEDF0787545C}" 9 11 EndProject 10 12 Global … … 36 38 {94186A6A-5176-4402-AE83-886557B53CCA}.Release|x86.ActiveCfg = Release|x86 37 39 {94186A6A-5176-4402-AE83-886557B53CCA}.Release|x86.Build.0 = Release|x86 40 {A9E282EA-180F-4233-B809-AEDF0787545C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 41 {A9E282EA-180F-4233-B809-AEDF0787545C}.Debug|Any CPU.Build.0 = Debug|Any CPU 42 {A9E282EA-180F-4233-B809-AEDF0787545C}.Debug|x86.ActiveCfg = Debug|Any CPU 43 {A9E282EA-180F-4233-B809-AEDF0787545C}.Release|Any CPU.ActiveCfg = Release|Any CPU 44 {A9E282EA-180F-4233-B809-AEDF0787545C}.Release|Any CPU.Build.0 = Release|Any CPU 45 {A9E282EA-180F-4233-B809-AEDF0787545C}.Release|x86.ActiveCfg = Release|Any CPU 38 46 EndGlobalSection 39 47 GlobalSection(SolutionProperties) = preSolution -
branches/New Persistence Exploration/Persistence/Persistence/Core/PersistenceConfiguration.cs
r1360 r1373 51 51 public class ConfigurationService { 52 52 53 private static ConfigurationService instance; 53 54 private readonly Dictionary<IFormat, List<IFormatter>> formatters; 54 55 private readonly List<IDecomposer> decomposers; 56 57 public Dictionary<IFormat, List<IFormatter>> AllFormatters { 58 get { 59 return formatters; 60 } 61 } 62 63 public List<IDecomposer> AllDecomposers { 64 get { 65 return decomposers; 66 } 67 } 55 68 56 private static ConfigurationService instance;57 69 public static ConfigurationService Instance { 58 70 get {
Note: See TracChangeset
for help on using the changeset viewer.