mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-07 08:57:13 +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.
24 lines
1002 B
XML
24 lines
1002 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<configuration>
|
|
<packageSources>
|
|
<clear />
|
|
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
|
|
<add key="LibHacAlpha" value="https://git.ryujinx.app/api/v4/projects/17/packages/nuget/index.json" />
|
|
<add key="RyubingPkgs" value="https://git.ryujinx.app/api/v4/projects/1/packages/nuget/index.json" />
|
|
</packageSources>
|
|
|
|
<!-- Define mappings by adding package patterns beneath the target source. -->
|
|
<!-- Ryujinx.LibHac packages will be restored from LibHacAlpha,
|
|
everything else from nuget.org. -->
|
|
<packageSourceMapping>
|
|
<!-- key value for <packageSource> should match key values from <packageSources> element -->
|
|
<packageSource key="nuget.org">
|
|
<package pattern="*" />
|
|
</packageSource>
|
|
<packageSource key="LibHacAlpha">
|
|
<package pattern="Ryujinx.LibHac" />
|
|
</packageSource>
|
|
</packageSourceMapping>
|
|
</configuration>
|