mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-03 11:09:40 -04:00
46 lines
1.6 KiB
XML
46 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<Platforms>AnyCPU;osx-x64;linux-x64;win-x64</Platforms>
|
|
<Configurations>Debug;Release</Configurations>
|
|
<TargetFrameworks>netstandard2.0;netcoreapp3.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.0.0</Version>
|
|
<PackProject>true</PackProject>
|
|
<TargetsForTfmSpecificBuildOutput>$(TargetsForTfmSpecificBuildOutput);GetNativeLibraryFiles</TargetsForTfmSpecificBuildOutput>
|
|
<PackageLicenseExpression>Zlib</PackageLicenseExpression>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="Easings.cs" />
|
|
<Compile Include="Raylib.cs" />
|
|
<Compile Include="Raymath.cs" />
|
|
<Compile Include="Rlgl.cs" />
|
|
</ItemGroup>
|
|
|
|
<Target Name="GetNativeLibraryFiles">
|
|
<ItemGroup>
|
|
<TfmSpecificPackageFile Include="$(BaseOutputPath)\..\runtimes\linux-x64\libraylib.so">
|
|
<PackagePath>runtimes/linux-x64/native</PackagePath>
|
|
</TfmSpecificPackageFile>
|
|
<TfmSpecificPackageFile Include="$(BaseOutputPath)\..\runtimes\win-x64\raylib.dll">
|
|
<PackagePath>runtimes/win-x64/native</PackagePath>
|
|
</TfmSpecificPackageFile>
|
|
<TfmSpecificPackageFile Include="$(BaseOutputPath)\..\runtimes\osx-x64\libraylib.a">
|
|
<PackagePath>runtimes/osx-x64/native</PackagePath>
|
|
</TfmSpecificPackageFile>
|
|
</ItemGroup>
|
|
</Target>
|
|
|
|
</Project>
|
|
|