mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-02-06 17:49:43 +00:00
960c426501
It finally works!
23 lines
605 B
XML
23 lines
605 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<ArrayNamespace>Ryujinx.Common.Memory</ArrayNamespace>
|
|
<ArrayOutputPath>Memory</ArrayOutputPath>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ArrayInputFiles Include="..\**\*.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="MsgPack.Cli" />
|
|
<PackageReference Include="Ryujinx.CustomTasks" PrivateAssets="all" />
|
|
<PackageReference Include="System.Management" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|