blob: 98caaf989f648b0c5a368e0552e4ca063ac1faef (
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
|
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PublishAot>true</PublishAot>
<StripSymbols>true</StripSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="LiteNetLib" Version="1.1.0" />
<PackageReference Include="Raylib-cs" Version="6.0.0" />
<EmbeddedResource Include="nekos\oneko.png" />
<EmbeddedResource Include="misc\cursor.png" />
<Content Include="nekos\**" CopyToOutputDirectory="PreserveNewest" />
<Content Include="misc\**" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
</Project>
|