26 lines
1.1 KiB
XML
26 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="ImGui.NET" Version="1.89.4" />
|
|
<PackageReference Include="Raylib-cs" Version="4.2.0.1" />
|
|
<PackageReference Include="Silk.NET" Version="2.17.0" />
|
|
<PackageReference Include="StbImageSharp" Version="2.27.13" />
|
|
<PackageReference Include="StbVorbisSharp" Version="1.22.4" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="libs/fmod/bin/linux/*.*"
|
|
Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))'">
|
|
<Link>%(Filename)%(Extension)</Link>
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="libs/fmod/bin/windows/*.*" Condition=" '$(OS)' == 'Windows_NT' ">
|
|
<Link>%(Filename)%(Extension)</Link>
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
</Project> |