blob: 84808789be42e0d961c34fffcc2693cbedee7508 (
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>false</StripSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="LiteNetLib" Version="1.1.0" />
<PackageReference Include="Raylib-cs" Version="5.0.0" />
<EmbeddedResource Include="oneko.png" />
<Content Include="oneko.png" CopyToOutputDirectory="PreserveNewest" />
<Content Include="dog.png" CopyToOutputDirectory="PreserveNewest" />
<Content Include="tora.png" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
</Project>
|