Added prototype ZuneHost console app

This commit is contained in:
Yoshi Askharoun
2022-06-03 01:24:53 -05:00
parent 321e353ef8
commit ef5de4ca94
5 changed files with 154 additions and 9 deletions
+17
View File
@@ -0,0 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Platforms>AnyCPU;x64;x86;ARM32</Platforms>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Silk.NET.Windowing" Version="2.15.0" />
<ProjectReference Include="..\ZuneShell\ZuneShell.csproj" />
</ItemGroup>
</Project>