mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-05 11:19:39 -04:00
71 lines
2.8 KiB
XML
71 lines
2.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<Platforms>AnyCPU;osx-x64;linux-x64;win-x64;win-x86;linux-x86</Platforms>
|
|
<Configurations>Debug;Release</Configurations>
|
|
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<EnableDefaultItems>false</EnableDefaultItems>
|
|
<AssemblyName>Raylib-cs</AssemblyName>
|
|
<RootNamespace>Raylib_cs</RootNamespace>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<Version>3.1.0</Version>
|
|
<PackageVersion>3.1.0</PackageVersion>
|
|
<Authors>Chris Dill, Raysan5 & Others</Authors>
|
|
<PackProject>true</PackProject>
|
|
<TargetsForTfmSpecificBuildOutput>$(TargetsForTfmSpecificBuildOutput);GetNativeLibraryFiles</TargetsForTfmSpecificBuildOutput>
|
|
<PackageLicenseExpression>Zlib</PackageLicenseExpression>
|
|
<Title>Raylib-cs - C# Bindings for Raylib</Title>
|
|
<Description>C# bindings for raylib - A simple and easy-to-use library to learn videogames programming http://www.raylib.com/
|
|
</Description>
|
|
<PackageIcon>raylib-cs_64x64.png</PackageIcon>
|
|
<PackageTags>Raylib;Raysan;Games;Game-Engine;Engine;Game</PackageTags>
|
|
<RepositoryType>git</RepositoryType>
|
|
<RepositoryUrl>https://github.com/ChrisDill/Raylib-cs/</RepositoryUrl>
|
|
<PackageProjectUrl>https://www.raylib.com/</PackageProjectUrl>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="Easings.cs" />
|
|
<Compile Include="Raylib.cs" />
|
|
<Compile Include="Raymath.cs" />
|
|
<Compile Include="Rlgl.cs" />
|
|
<None Include="../Logo/raylib-cs_64x64.png" Pack="true" PackagePath="" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="Raylib-cs.targets" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
|
|
</ItemGroup>
|
|
|
|
<Target Name="GetNativeLibraryFiles">
|
|
<ItemGroup>
|
|
<TfmSpecificPackageFile Include="$(BaseOutputPath)\..\runtimes\linux-x64\native\libraylib.so">
|
|
<PackagePath>runtimes/linux-x64/native</PackagePath>
|
|
</TfmSpecificPackageFile>
|
|
<TfmSpecificPackageFile Include="$(BaseOutputPath)\..\runtimes\linux-x86\native\libraylib.so">
|
|
<PackagePath>runtimes/linux-x86/native</PackagePath>
|
|
</TfmSpecificPackageFile>
|
|
<TfmSpecificPackageFile Include="$(BaseOutputPath)\..\runtimes\win-x64\native\raylib.dll">
|
|
<PackagePath>runtimes/win-x64/native</PackagePath>
|
|
</TfmSpecificPackageFile>
|
|
<TfmSpecificPackageFile Include="$(BaseOutputPath)\..\runtimes\win-x86\native\raylib.dll">
|
|
<PackagePath>runtimes/win-x86/native</PackagePath>
|
|
</TfmSpecificPackageFile>
|
|
<TfmSpecificPackageFile Include="$(BaseOutputPath)\..\runtimes\osx-x64\native\libraylib.a">
|
|
<PackagePath>runtimes/osx-x64/native</PackagePath>
|
|
</TfmSpecificPackageFile>
|
|
</ItemGroup>
|
|
</Target>
|
|
|
|
</Project>
|
|
|