mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-03 11:09:40 -04:00
- Set libraries to target netstandard2.1 and updated tests to net5.0. Still learning about the new features. Libraries may also change to net5.0 later if the newer features are useful enough to include directly in the library. - Removing Platform.cs which was only used by netfx.
23 lines
801 B
XML
23 lines
801 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFrameworks>netcoreapp3.1;net5.0</TargetFrameworks>
|
|
<Platforms>AnyCPU</Platforms>
|
|
<Configurations>Debug;Release</Configurations>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<ApplicationIcon>../Logo/raylib-cs.ico</ApplicationIcon>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />
|
|
<PackageReference Include="xunit" Version="2.4.0" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" />
|
|
<PackageReference Include="coverlet.collector" Version="1.0.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="../Raylib-cs/Raylib-cs.csproj" />
|
|
</ItemGroup>
|
|
</Project> |