Update project references
This commit is contained in:
parent
ff1e1c68db
commit
9277b3aa9a
@ -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>
|
||||
|
||||
@ -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>
|
||||
|
||||
@ -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>
|
||||
|
||||
@ -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" />
|
||||
|
||||
@ -35,6 +35,7 @@
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.configuration" />
|
||||
<Reference Include="System.Core" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
|
||||
@ -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
|
||||
}
|
||||
|
||||
|
||||
@ -50,6 +50,7 @@
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.configuration" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Runtime.Remoting" />
|
||||
</ItemGroup>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user