Changeset 1469
- Timestamp:
- 03/31/09 12:38:28 (16 years ago)
- Location:
- trunk/sources/HeuristicLab.Persistence
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Persistence/Core/ConfigurationService.cs
r1454 r1469 6 6 using HeuristicLab.Persistence.Default.Xml; 7 7 using HeuristicLab.Persistence.Interfaces; 8 using HeuristicLab.Tracing; 8 9 9 10 namespace HeuristicLab.Persistence.Core { … … 50 51 } 51 52 } catch { 52 Console.WriteLine("WARNING: Could not load settings.");53 Logger.Warn("Could not load settings."); 53 54 } 54 55 } … … 95 96 Formatters[formatter.Format].Add(formatter); 96 97 } catch (MissingMethodException) { 97 Console.WriteLine("WARNING: Could not instantiate {0}", t.VersionInvariantName());98 Logger.Warn("Could not instantiate " + t.VersionInvariantName()); 98 99 } 99 100 } … … 102 103 Decomposers.Add((IDecomposer) Activator.CreateInstance(t, true)); 103 104 } catch (MissingMethodException) { 104 Console.WriteLine("WARNING: Could not instantiate {0}", t.VersionInvariantName());105 Logger.Warn("Could not instantiate " + t.VersionInvariantName()); 105 106 } 106 107 } -
trunk/sources/HeuristicLab.Persistence/HeuristicLab.Persistence.csproj
r1466 r1469 54 54 </Reference> 55 55 <Reference Include="System.Data" /> 56 <Reference Include="System.Data.DataSetExtensions">57 <RequiredTargetFramework>3.5</RequiredTargetFramework>58 </Reference>59 56 <Reference Include="System.Xml" /> 60 57 </ItemGroup> … … 126 123 <Name>HeuristicLab.PluginInfrastructure</Name> 127 124 </ProjectReference> 125 <ProjectReference Include="..\HeuristicLab.Tracing\HeuristicLab.Tracing.csproj"> 126 <Project>{EE2034D9-6E27-48A1-B855-42D45F69A4FC}</Project> 127 <Name>HeuristicLab.Tracing</Name> 128 </ProjectReference> 128 129 </ItemGroup> 129 130 </Project>
Note: See TracChangeset
for help on using the changeset viewer.