2022-08-04 15:40:58 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2022-08-20 11:57:57 +02:00
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2022-08-04 15:40:58 +02:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-05-13 15:17:57 +02:00
|
|
|
<ProjectReference Include="..\Quik.FreeType\Quik.FreeType.csproj" />
|
2022-08-04 15:40:58 +02:00
|
|
|
<ProjectReference Include="..\Quik.OpenTK\Quik.OpenTK.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2022-08-19 15:13:19 +02:00
|
|
|
<ItemGroup>
|
|
|
|
<None Remove="font.dat" />
|
|
|
|
<EmbeddedResource Include="font.dat" />
|
|
|
|
<None Remove="font.xml" />
|
|
|
|
<EmbeddedResource Include="font.xml" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2022-08-04 15:40:58 +02:00
|
|
|
</Project>
|