mirror of
https://github.com/microsoft/WSL.git
synced 2025-12-10 00:44:55 -06:00
Many Microsoft employees have contributed to the Windows Subsystem for Linux, this commit is the result of their work since 2016. The entire history of the Windows Subsystem for Linux can't be shared here, but here's an overview of WSL's history after it moved to it own repository in 2021: Number of commits on the main branch: 2930 Number of contributors: 31 Head over https://github.com/microsoft/WSL/releases for a more detailed history of the features added to WSL since 2021.
30 lines
1.1 KiB
XML
30 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 gurantee
|
|
Project only (above sources) are enabled and the only ones present. -->
|
|
<clear />
|
|
</disabledPackageSources>
|
|
</configuration>
|
|
|