mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-28 00:16:23 +02:00

Main benefit to this is sharing the C# model definitions from what the server returns and Ryujinx uses in-app without differences. Additionally removed the GitHub API JSON models.
25 lines
1.2 KiB
XML
25 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<configuration>
|
|
<packageSources>
|
|
<clear />
|
|
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
|
|
<!-- Only needed when using pre-release versions of Ryujinx.LibHac. -->
|
|
<!--<add key="LibHacAlpha" value="https://git.ryujinx.app/api/v4/projects/17/packages/nuget/index.json" />-->
|
|
<add key="Ryujinx.UpdateClient" value="https://git.ryujinx.app/api/v4/projects/71/packages/nuget/index.json" />
|
|
</packageSources>
|
|
<packageSourceMapping>
|
|
<!-- key value for <packageSource> should match key values from <packageSources> element -->
|
|
<!-- These are defined and .NET still yells about multiple package sources with no mappings. Not sure what to do, this is in the docs lol -->
|
|
<packageSource key="nuget.org">
|
|
<package pattern="*" />
|
|
</packageSource>
|
|
<packageSource key="Ryujinx.UpdateClient">
|
|
<package pattern="Ryujinx.UpdateClient" />
|
|
<package pattern="Ryujinx.Systems.Update.Common" />
|
|
</packageSource>
|
|
<!--<packageSource key="LibHacAlpha">
|
|
<package pattern="Ryujinx.LibHac" />
|
|
</packageSource>-->
|
|
</packageSourceMapping>
|
|
</configuration>
|