Projektdateien hinzufügen.

This commit is contained in:
Jan Grießhaber
2024-10-24 03:03:13 +02:00
parent ce2ab565e2
commit 73c8cbca39
8 changed files with 774 additions and 0 deletions

24
SFMLGame/SFMLGame.csproj Normal file
View File

@@ -0,0 +1,24 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SFML.Net" Version="2.6.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\GameOfLife\GameOfLife.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="fonts\ARIAL.TTF">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>