mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-04-18 04:02:55 +00:00
Additionally added a script to push them to Ryubing GitLab package registry. This script is my use only since it assumes you have the necessary authentication locally & on the server. TODO: figure out a way to get proper versioning for them.
19 lines
680 B
XML
19 lines
680 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<DefineConstants Condition=" '$(ExtraDefineConstants)' != '' ">$(DefineConstants);$(ExtraDefineConstants)</DefineConstants>
|
|
<DefaultItemExcludes>$(DefaultItemExcludes);._*</DefaultItemExcludes>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.IO.RecyclableMemoryStream" />
|
|
<PackageReference Include="MsgPack.Cli" />
|
|
<PackageReference Include="System.Management" />
|
|
<PackageReference Include="Humanizer" />
|
|
<PackageReference Include="Gommon" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|