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