10000 Fix malformed NuGet.config file (#550) · dotnet/dotnet@f7f6723 · GitHub
[go: up one dir, main page]

Skip to content

Commit f7f6723

Browse files
Fix malformed NuGet.config file (#550)
Co-authored-by: Viktor Hofer <viktor.hofer@microsoft.com>
1 parent df9e0be commit f7f6723

File tree

1 file changed

+30
-6
lines changed

1 file changed

+30
-6
lines changed

src/msbuild/NuGet.config

Lines changed: 30 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,37 @@
1515
<add key="dotnet9" value="https://dnceng.pkgs.visualstudio.com/public/_packaging/dotnet9/nuget/v3/index.json" />
1616
<add key="dotnet9-transport" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet9-transport/nuget/v3/index.json" />
1717
<add key="vs-impl" value="https://pkgs.dev.azure.com/azure-public/vside/_packaging/vs-impl/nuget/v3/index.json" />
18-
<!-- We don't want other than VS OpenTelemetry libraries from vs-impl -->
19-
<packageSourceMapping>
20-
<packageSource key="vs-impl">
21-
<package pattern="Microsoft.VisualStudio.OpenTelemetry*" />
22-
</packageSource>
23-
</packageSourceMapping>
2418
</packageSources>
19+
<!-- We don't want other than VS OpenTelemetry libraries from vs-impl -->
20+
<packageSourceMapping>
21+
<packageSource key="vs-impl">
22+
<package pattern="Microsoft.VisualStudio.OpenTelemetry*" />
23+
</packageSource>
24+
<packageSource key="arcade">
25+
<package pattern="*" />
26+
</packageSource>
27+
<packageSource key="dotnet-public">
28+
<package pattern="*" />
29+
</packageSource>
30+
<packageSource key="dotnet-tools">
31+
<package pattern="*" />
32+
</packageSource>
33+
<packageSource key="dotnet6">
34+
<package pattern="*" />
35+
</packageSource>
36+
<packageSource key="dotnet8">
37+
<package pattern="*" />
38+
</packageSource>
39+
<packageSource key="dotnet8-transport">
40+
<package pattern="*" />
41+
</packageSource>
42+
<packageSource key="dotnet9">
43+
<package pattern="*" />
44+
</packageSource>
45+
<packageSource key="dotnet9-transport">
46+
<package pattern="*" />
47+
</packageSource>
48+
</packageSourceMapping>
2549
<disabledPackageSources>
2650
<!--Begin: Package sources managed by Dependency Flow automation. Do not edit the sources below.-->
2751
<!-- Begin: Package sources from dotnet-runtime -->

0 commit comments

Comments
 (0)
0