blob: 190e2345b69febe8629c22882a8c13ed60aabca0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PublishAot>true</PublishAot>
<StripSymbols>true</StripSymbols>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<InvariantGlobalization>true</InvariantGlobalization>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="LiteNetLib" Version="1.3.1" />
<PackageReference Include="Raylib-cs" Version="7.0.1" />
<EmbeddedResource Include="nekos\oneko.png" />
<EmbeddedResource Include="misc\cursor.png" />
<Content Include="nekos\**" CopyToOutputDirectory="PreserveNewest" />
<Content Include="misc\**" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
</Project>
|