mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-03 11:09:40 -04:00
- 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.
20 lines
954 B
XML
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> |