diff options
Diffstat (limited to 'OnekoOnline.csproj')
| -rw-r--r-- | OnekoOnline.csproj | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/OnekoOnline.csproj b/OnekoOnline.csproj new file mode 100644 index 0000000..57f77e6 --- /dev/null +++ b/OnekoOnline.csproj @@ -0,0 +1,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> |
