Initial commit

This commit is contained in:
Michael Becker 2024-06-13 14:29:02 -04:00
parent a63423af8e
commit 1562468936
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,18 @@
namespace MBS.Desktop;
public class DesktopApplication : MBS.Core.Application
{
public DesktopApplicationEngine Engine { get; }
protected override int StartInternal()
{
// find the appropriate DesktopApplicationEngine for this platform
return base.StartInternal();
}
protected override void StopInternal(int exitCode = 0)
{
base.StopInternal(exitCode);
}
}

View File

@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\MBS.Core\MBS.Core.csproj" />
</ItemGroup>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>