Initial import

This commit is contained in:
Stein Helge Riise
2025-11-17 08:32:46 +01:00
commit ede31fbb7e
129 changed files with 9514 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<!-- Force use of public NuGet only for everything under ./backend -->
<packageSources>
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
</packageSources>
<!-- Map all packages to nuget.org so no other source is probed -->
<packageSourceMapping>
<packageSource key="nuget.org">
<package pattern="*" />
</packageSource>
</packageSourceMapping>
<!-- Optional: explicitly disable common local/VS offline feeds -->
<disabledPackageSources>
<add key="Microsoft Visual Studio Offline Packages" value="true" />
</disabledPackageSources>
<!-- Avoid prerelease unless explicitly requested (optional) -->
<!--
<config>
<add key="repositoryPath" value=".\\packages" />
</config>
-->
<!-- Keep deterministic restores/reproducibility (optional, can be removed) -->
<bindingRedirects>
<add key="skip" value="false" />
</bindingRedirects>
</configuration>