blob: 57f77e64581f3065b983cfdf6bb91aefdbc2244c (
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="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>
|