update references

This commit is contained in:
Michael Becker 2024-04-20 13:28:25 -04:00
parent 18313cafb0
commit fb7a73e285
4 changed files with 17 additions and 2 deletions

View File

@ -3,6 +3,8 @@
<ItemGroup>
<ProjectReference Include="..\..\lib\MBS.Editor.Core\MBS.Editor.Core.csproj" />
<ProjectReference Include="..\..\lib\MBS.Editor.UserInterface\MBS.Editor.UserInterface.csproj" />
<ProjectReference Include="..\..\..\..\framework-dotnet\framework-dotnet\src\lib\MBS.Desktop\MBS.Desktop.csproj" />
<ProjectReference Include="..\..\..\..\framework-dotnet\framework-dotnet\src\lib\MBS.Core\MBS.Core.csproj" />
</ItemGroup>
<PropertyGroup>

View File

@ -1,3 +1,3 @@
using MBS.Editor.UserInterface;
(new EditorApplication()).Start();
return (new EditorApplication()).Start();

View File

@ -1,6 +1,14 @@
namespace MBS.Editor.UserInterface;
public class EditorApplication : MBS.Desktop.DesktopApplication
using MBS.Desktop;
public class EditorApplication : DesktopApplication
{
protected override int StartInternal()
{
return 0;
}
}

View File

@ -1,5 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\..\..\..\framework-dotnet\framework-dotnet\src\lib\MBS.Core\MBS.Core.csproj" />
<ProjectReference Include="..\..\..\..\framework-dotnet\framework-dotnet\src\lib\MBS.Desktop\MBS.Desktop.csproj" />
</ItemGroup>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>