16 lines
447 B
XML
16 lines
447 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net7.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<UseWPF>true</UseWPF>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="OpenTK.GLWpfControl" Version="4.2.3" />
|
|
<PackageReference Include="StbImageSharp" Version="2.27.13" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|