Files
Ragon/Ragon.Simulation/Ragon.Simulation.csproj
T

33 lines
968 B
XML
Raw Normal View History

2023-03-06 10:06:43 +04:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
2023-10-04 14:42:59 +03:00
<RootNamespace>Ragon.Client.Simulation</RootNamespace>
2023-03-06 10:06:43 +04:00
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Ragon.Client.Property\Ragon.Client.Property.csproj" />
<ProjectReference Include="..\Ragon.Client\Ragon.Client.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ENet-CSharp" Version="2.4.8" />
2023-10-04 14:42:59 +03:00
<PackageReference Include="Raylib-cs" Version="4.5.0.4" />
2023-03-06 10:06:43 +04:00
</ItemGroup>
<ItemGroup>
<None Update="libenet.dylib">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
2023-10-04 14:42:59 +03:00
<ItemGroup>
<Folder Include="Sources\Server\" />
</ItemGroup>
2023-03-06 10:06:43 +04:00
</Project>