2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-06-30 19:03:42 -04:00

Updating .csproj files to help with testing continuous integration.

- Removed copy of logo in Generator.
- Removed older generated Raylib.cs from Generator.
This commit is contained in:
2020-01-29 19:37:21 +00:00
parent 18c264f0c9
commit 279d6bea4c
4 changed files with 8 additions and 819 deletions

View File

@ -1,7 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net40;net45;net46;net461;net462;netcoreapp2.1;netcoreapp3.1</TargetFrameworks>
<TargetFrameworks>net45;net46;net461;net462;netcoreapp2.1;netcoreapp3.1</TargetFrameworks>
<ApplicationIcon>../Logo/raylib-cs.ico</ApplicationIcon>
<Platforms>AnyCPU;x64;x86</Platforms>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
@ -11,10 +12,4 @@
<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>