Initial commit
This commit is contained in:
parent
a63423af8e
commit
1562468936
@ -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);
|
||||
}
|
||||
}
|
||||
@ -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>
|
||||
Loading…
x
Reference in New Issue
Block a user