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:
12
Test.NetCore/Program.cs
Normal file
12
Test.NetCore/Program.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using Test.Common;
|
||||
|
||||
namespace Test.NetCore
|
||||
{
|
||||
class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
Common.Test.Run();
|
||||
}
|
||||
}
|
||||
}
|
7
Test.NetCore/Properties/launchSettings.json
Normal file
7
Test.NetCore/Properties/launchSettings.json
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"profiles": {
|
||||
"Test.NetCore": {
|
||||
"commandName": "Project"
|
||||
}
|
||||
}
|
||||
}
|
20
Test.NetCore/Test.NetCore.csproj
Normal file
20
Test.NetCore/Test.NetCore.csproj
Normal 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>
|
BIN
Test.NetCore/lib/AnyCPU/raylib.dll
Normal file
BIN
Test.NetCore/lib/AnyCPU/raylib.dll
Normal file
Binary file not shown.
BIN
Test.NetCore/lib/x64/raylib.dll
Normal file
BIN
Test.NetCore/lib/x64/raylib.dll
Normal file
Binary file not shown.
BIN
Test.NetCore/lib/x86/raylib.dll
Normal file
BIN
Test.NetCore/lib/x86/raylib.dll
Normal file
Binary file not shown.
BIN
Test.NetCore/raylib-cs.ico
Normal file
BIN
Test.NetCore/raylib-cs.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 139 KiB |
Reference in New Issue
Block a user