WSL/nuget.config
Ben Hillis 9c01583fea
WSLA: Add virtiofs support for mounted Windows paths (#13880)
* WSLA: Add virtiofs support for mounted Windows paths

* pr feedback and clarification on removing virtiofs shares

---------

Co-authored-by: Ben Hillis <benhill@ntdev.microsoft.com>
2025-12-12 12:07:32 -08:00

29 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<config>
<add key="defaultPushSource" value="https://pkgs.dev.azure.com/shine-oss/wsl/_packaging/WslDependencies/nuget/v3/index.json" />
</config>
<solution>
<add key="disableSourceControlIntegration" value="true" />
</solution>
<activePackageSource>
<add key="All" value="(Aggregate source)" />
</activePackageSource>
<packageRestore>
<!-- Allow NuGet to download missing packages -->
<add key="enabled" value="True" />
<!-- Automatically check for missing packages during build in Visual Studio -->
<add key="automatic" value="True" />
</packageRestore>
<packageSources>
<clear />
<add key="WSL" value="https://pkgs.dev.azure.com/shine-oss/wsl/_packaging/WslDependencies/nuget/v3/index.json" />
</packageSources>
<disabledPackageSources>
<!-- Override any User and Computer NuGet package settings to guarantee
Project only (above sources) are enabled and the only ones present. -->
<clear />
</disabledPackageSources>
</configuration>