2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-05 11:19:39 -04:00

Version Bump (more changes to come until release)

Added targets file for .Net Framework NuGet support
Updated TargetFrameworks to netstandard2.1 rather than netcoreapp3.1
Updated packaging info
This commit is contained in:
Ben Parsons 2020-05-04 00:17:04 +10:00
parent 3b3bdc34c4
commit c0c1041e3a
2 changed files with 39 additions and 7 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>
@ -34,7 +35,11 @@
<Compile Include="Raylib.cs" /> <Compile Include="Raylib.cs" />
<Compile Include="Raymath.cs" /> <Compile Include="Raymath.cs" />
<Compile Include="Rlgl.cs" /> <Compile Include="Rlgl.cs" />
<None Include="../Logo/raylib-cs_64x64.png" Pack="true" PackagePath=""/> <None Include="../Logo/raylib-cs_64x64.png" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<Content Include="Raylib-cs.targets" />
</ItemGroup> </ItemGroup>
<Target Name="GetNativeLibraryFiles"> <Target Name="GetNativeLibraryFiles">

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>