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

added new runtimes

This commit is contained in:
msmshazan
2018-10-21 23:04:32 +05:30
parent 529126bfa7
commit 6285895ad5
23 changed files with 378 additions and 82 deletions

12
Test.NetCore/Program.cs Normal file
View File

@ -0,0 +1,12 @@
using Test.Common;
namespace Test.NetCore
{
class Program
{
static void Main(string[] args)
{
Common.Test.Run();
}
}
}

View File

@ -0,0 +1,7 @@
{
"profiles": {
"Test.NetCore": {
"commandName": "Project"
}
}
}

View File

@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
<ApplicationIcon>raylib-cs.ico</ApplicationIcon>
<Platforms>AnyCPU;x64;x86</Platforms>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Bindings\Bindings.csproj" />
</ItemGroup>
<Import Project="..\Test.Common\Test.Common.projitems" Label="Shared" />
<Target Name="TestTarget" AfterTargets="Build">
<Copy Condition=" '$(Platform)' == 'x86' " SourceFiles="lib\x86\raylib.dll" DestinationFolder="$(TargetDir)" />
<Copy Condition=" '$(Platform)' == 'AnyCPU' " SourceFiles="lib\x86\raylib.dll" DestinationFolder="$(TargetDir)" />
<Copy Condition=" '$(Platform)' == 'x64' " SourceFiles="lib\x64\raylib.dll" DestinationFolder="$(TargetDir)" />
</Target>
</Project>

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
Test.NetCore/raylib-cs.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 139 KiB