Update project references

This commit is contained in:
Michael Becker 2015-09-08 08:56:04 -04:00
parent ff1e1c68db
commit 9277b3aa9a
7 changed files with 13 additions and 6 deletions

View File

@ -79,7 +79,7 @@
<Project>{8622EBC4-8E20-476E-B284-33D472081F5C}</Project>
<Name>UniversalEditor.UserInterface</Name>
</ProjectReference>
<ProjectReference Include="..\..\Plugins\UniversalEditor.Essential\UniversalEditor.Essential.csproj">
<ProjectReference Include="..\..\Libraries\UniversalEditor.Essential\UniversalEditor.Essential.csproj">
<Project>{30467E5C-05BC-4856-AADC-13906EF4CADD}</Project>
<Name>UniversalEditor.Essential</Name>
</ProjectReference>

View File

@ -57,7 +57,7 @@
<Project>{8622EBC4-8E20-476E-B284-33D472081F5C}</Project>
<Name>UniversalEditor.UserInterface</Name>
</ProjectReference>
<ProjectReference Include="..\..\Plugins\UniversalEditor.Essential\UniversalEditor.Essential.csproj">
<ProjectReference Include="..\..\Libraries\UniversalEditor.Essential\UniversalEditor.Essential.csproj">
<Project>{30467E5C-05BC-4856-AADC-13906EF4CADD}</Project>
<Name>UniversalEditor.Essential</Name>
</ProjectReference>

View File

@ -38,6 +38,7 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.configuration" />
<Reference Include="System.Core" />
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
@ -69,7 +70,6 @@
<Compile Include="Dialogs\DocumentPropertiesDialog.Designer.cs">
<DependentUpon>DocumentPropertiesDialog.cs</DependentUpon>
</Compile>
<Compile Include="LocalConfiguration.cs" />
<Compile Include="Controls\ErrorList.cs">
<SubType>UserControl</SubType>
</Compile>
@ -131,6 +131,9 @@
<DependentUpon>UnsavedDocumentsDialog.cs</DependentUpon>
</Compile>
<Compile Include="IconMethods.cs" />
<Compile Include="LocalConfiguration.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="MainWindow.cs">
<SubType>Form</SubType>
</Compile>

View File

@ -35,6 +35,7 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.configuration" />
<Reference Include="System.Core" />
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />

View File

@ -35,6 +35,7 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.configuration" />
<Reference Include="System.Core" />
</ItemGroup>
<ItemGroup>

View File

@ -521,10 +521,11 @@ namespace UniversalEditor.UserInterface
}
}
// FIXME: this is the single XML configuration file loader that should be executed at the beginning of engine launch
protected virtual void InitializeXMLConfiguration()
{
#region Load the XML files
string[] xmlfiles = System.IO.Directory.GetFiles(mvarBasePath, "*.uexml", System.IO.SearchOption.AllDirectories);
string[] xmlfiles = System.IO.Directory.GetFiles(mvarBasePath, System.Configuration.ConfigurationManager.AppSettings["UniversalEditor.Configuration.ConfigurationFileNameFilter"], System.IO.SearchOption.AllDirectories);
UpdateSplashScreenStatus("Loading XML configuration files", 0, 0, xmlfiles.Length);
@ -790,8 +791,8 @@ namespace UniversalEditor.UserInterface
}
#endregion
UpdateSplashScreenStatus("Finalizing configuration");
ConfigurationManager.Load();
// UpdateSplashScreenStatus("Finalizing configuration");
// ConfigurationManager.Load();
#endregion
}

View File

@ -50,6 +50,7 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.configuration" />
<Reference Include="System.Core" />
<Reference Include="System.Runtime.Remoting" />
</ItemGroup>