mirror of
https://github.com/eliasstepanik/FluidSimulation.git
synced 2026-01-11 13:38:28 +00:00
21 lines
606 B
XML
21 lines
606 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
|
<PackageReference Include="Raylib-CsLo" Version="4.2.0.3" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="Config.json" CopyToOutputDirectory="PreserveNewest" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|