H. Utku Maden
9339295378
I have had a long break from this project due to other higher priority things going on in my life. Big changes inbound.
22 lines
599 B
XML
22 lines
599 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Quik.FreeType\Quik.FreeType.csproj" />
|
|
<ProjectReference Include="..\Quik.OpenTK\Quik.OpenTK.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="font.dat" />
|
|
<EmbeddedResource Include="font.dat" />
|
|
<None Remove="font.xml" />
|
|
<EmbeddedResource Include="font.xml" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|