2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-03 11:09:40 -04:00
This commit is contained in:
ChrisDill 2020-05-03 15:42:11 +01:00
commit fdc760f58e
2 changed files with 38 additions and 6 deletions

View File

@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<Platforms>AnyCPU;osx-x64;linux-x64;win-x64</Platforms> <Platforms>AnyCPU;osx-x64;linux-x64;win-x64;win-x86;linux-x86</Platforms>
<Configurations>Debug;Release</Configurations> <Configurations>Debug;Release</Configurations>
<TargetFrameworks>netstandard2.0;netcoreapp3.1</TargetFrameworks> <TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
</PropertyGroup> </PropertyGroup>
<PropertyGroup> <PropertyGroup>
@ -14,16 +14,17 @@
</PropertyGroup> </PropertyGroup>
<PropertyGroup> <PropertyGroup>
<Version>3.0.2</Version> <Version>3.1.0</Version>
<PackageVersion>3.1.0</PackageVersion>
<Authors>Chris Dill, Raysan5 &amp; Others</Authors>
<PackProject>true</PackProject> <PackProject>true</PackProject>
<TargetsForTfmSpecificBuildOutput>$(TargetsForTfmSpecificBuildOutput);GetNativeLibraryFiles</TargetsForTfmSpecificBuildOutput> <TargetsForTfmSpecificBuildOutput>$(TargetsForTfmSpecificBuildOutput);GetNativeLibraryFiles</TargetsForTfmSpecificBuildOutput>
<PackageLicenseExpression>Zlib</PackageLicenseExpression> <PackageLicenseExpression>Zlib</PackageLicenseExpression>
<Title>Raylib-cs - C# Bindings for Raylib</Title> <Title>Raylib-cs - C# Bindings for Raylib</Title>
<Description> <Description>C# bindings for raylib - A simple and easy-to-use library to learn videogames programming http://www.raylib.com/
C# bindings for raylib - A simple and easy-to-use library to learn videogames programming http://www.raylib.com/
</Description> </Description>
<PackageIcon>raylib-cs_64x64.png</PackageIcon> <PackageIcon>raylib-cs_64x64.png</PackageIcon>
<PackageTags>Game;Raylib;Raysan;Games;Game-Engine;Engine</PackageTags> <PackageTags>Raylib;Raysan;Games;Game-Engine;Engine;Game</PackageTags>
<RepositoryType>git</RepositoryType> <RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/ChrisDill/Raylib-cs/</RepositoryUrl> <RepositoryUrl>https://github.com/ChrisDill/Raylib-cs/</RepositoryUrl>
<PackageProjectUrl>https://www.raylib.com/</PackageProjectUrl> <PackageProjectUrl>https://www.raylib.com/</PackageProjectUrl>
@ -37,6 +38,10 @@
<None Include="../Logo/raylib-cs_64x64.png" Pack="true" PackagePath="" /> <None Include="../Logo/raylib-cs_64x64.png" Pack="true" PackagePath="" />
</ItemGroup> </ItemGroup>
<ItemGroup>
<Content Include="Raylib-cs.targets" />
</ItemGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" /> <PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
</ItemGroup> </ItemGroup>

View File

@ -0,0 +1,27 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Condition=" '$(Platform)' == 'osx-x64' ">
<Reference Include="raylib">
<HintPath>..\..\runtime\osx-x64\native\libraylib.dylib</HintPath>
</Reference>
</ItemGroup>
<ItemGroup Condition=" '$(Platform)' == 'win-x86' Or '$(Platform)' == 'AnyCPU' Or '$(Platform)' == 'x86'">
<Reference Include="raylib">
<HintPath>..\..\runtime\win-x86\native\raylib.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup Condition=" '$(Platform)' == 'win-x64' Or '$(Platform)' == 'x64'">
<Reference Include="raylib">
<HintPath>..\..\runtime\win-x64\native\raylib.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup Condition=" '$(Platform)' == 'linux-x64'">
<Reference Include="raylib">
<HintPath>..\..\runtime\linux-x64\native\raylib.so</HintPath>
</Reference>
</ItemGroup>
</Project>