mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-05 11:19:39 -04:00
- Renamed from Tests.MultiTarget to Tests. - References Raylib-cs.csproj instead of adding bindings directly.
23 lines
613 B
XML
23 lines
613 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFrameworks>net47;netcoreapp3.1</TargetFrameworks>
|
|
<Platforms>x64</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<ApplicationIcon>../Logo/raylib-cs.ico</ApplicationIcon>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="../netfx.props" />
|
|
|
|
<ItemGroup>
|
|
<None Include="../app.config" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="../Raylib-cs/Raylib-cs.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|