2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-03 11:09:40 -04:00
raylib-cs/Tests/Tests.MultiTarget.csproj
ChrisDill af6d15fa67 Updated project files.
- Removed old project references.
- Updated Tests.MultiTarget.csproj.
- Removed DotNet.ILCompiler from CoreRT for now. Plan to revisit in the future.
- Removed logo from project. Uses Logo folder instead.
- Changed LICENSE to LICENSE.md.
2019-12-11 11:24:20 +00:00

20 lines
954 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net40;net45;net46;net461;net462;netcoreapp2.1;netcoreapp3.1</TargetFrameworks>
<ApplicationIcon>../Logo/raylib-cs.ico</ApplicationIcon>
<Platforms>AnyCPU;x64;x86</Platforms>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Compile Include="../Bindings/*.cs" />
</ItemGroup>
<!-- Option to copy native lib to output folder -->
<!--<Target Name="TestTarget" AfterTargets="Build">
<Copy Condition=" '$(Platform)' == 'x86' " SourceFiles="../../libs\x86\raylib.dll" DestinationFolder="$(TargetDir)" />
<Copy Condition=" '$(Platform)' == 'AnyCPU' " SourceFiles="../../libs\x86\raylib.dll" DestinationFolder="$(TargetDir)" />
<Copy Condition=" '$(Platform)' == 'x64' " SourceFiles="../../libs\x64\raylib.dll" DestinationFolder="$(TargetDir)" />
</Target>-->
</Project>