Skip to content
This repository was archived by the owner on Jan 12, 2024. It is now read-only.

Commit 3fe3c28

Browse files
committed
Explicitly use NuGet.Config for additional sources
1 parent 340d44f commit 3fe3c28

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

build.proj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@
7474
</Target>
7575

7676
<Target Name="Restore">
77-
<Exec Command='"$(NuGet)" Restore "%(Solution.FullPath)" -Verbosity quiet' />
78-
<Exec Command='"$(NuGet)" Restore "src\VisualStudio\NuGet.Packaging.VisualStudio.sln" -Verbosity quiet' />
77+
<Exec Command='"$(NuGet)" Restore "%(Solution.FullPath)" -Verbosity quiet -Config src\NuGet.Config' />
78+
<Exec Command='"$(NuGet)" Restore "src\VisualStudio\NuGet.Packaging.VisualStudio.sln" -Verbosity quiet -Config src\NuGet.Config' />
7979
</Target>
8080

8181
<Target Name="Coverage" DependsOnTargets="Build">

src/NuGet.Config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<configuration>
33
<packageSources>
44
<clear />
5-
<add key="NuGetCI" value="https://dotnet.myget.org/F/nuget-build/api/v3/index.json" />
5+
<add key="NuGetCI" value="https://dotnet.myget.org/F/nuget-build/api/v3/index.json" />
66
<add key="NuGet.org" value="https://api.nuget.org/v3/index.json" />
77
<add key="Merq-CI" value="https://ci.appveyor.com/nuget/merq" />
88
<add key="Clide-CI" value="https://ci.appveyor.com/nuget/clide" />

0 commit comments

Comments
 (0)