feat: add nuget.config for package source management and update CI workflows to restore dependencies correctly

This commit is contained in:
HueByte
2026-02-21 17:16:05 +01:00
parent 1861fd00f9
commit 75491d65e2
4 changed files with 33 additions and 11 deletions
+12
View File
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
</packageSources>
<packageSourceMapping>
<packageSource key="nuget.org">
<package pattern="*" />
</packageSource>
</packageSourceMapping>
</configuration>