17 lines
632 B
XML
17 lines
632 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<Import Project="$(SolutionDir)/Tixl.props" />
|
|
<PropertyGroup>
|
|
<TargetFramework>$(TixlNetCoreFrameworkVersion)</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<Deterministic>true</Deterministic>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="ImGui.NET" Version="1.91.6.1" />
|
|
<PackageReference Include="Silk.NET.Input.Common" Version="2.23.0" />
|
|
<PackageReference Include="Silk.NET.Windowing.Common" Version="2.23.0" />
|
|
</ItemGroup>
|
|
|
|
</Project> |