This repository has been archived by the owner on Dec 14, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use MSBuild to set NuGet feeds instead of NuGet.config
- Loading branch information
Nate McMaster
committed
Oct 2, 2017
1 parent
fb142f0
commit bf7c9e0
Showing
5 changed files
with
18 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<Project> | ||
<Import Project="$(DotNetRestoreSourcePropsPath)" Condition="'$(DotNetRestoreSourcePropsPath)' != ''"/> | ||
|
||
<PropertyGroup> | ||
<RestoreSources>$(DotNetRestoreSources)</RestoreSources> | ||
<RestoreSources Condition="'$(DotNetBuildOffline)' != 'true'"> | ||
$(RestoreSources); | ||
https://dotnet.myget.org/F/aspnet-2-0-2-october2017-patch/api/v3/index.json; | ||
https://dotnet.myget.org/F/aspnetcore-master/api/v3/index.json; | ||
https://dotnet.myget.org/F/aspnetcore-tools/api/v3/index.json; | ||
https://api.nuget.org/v3/index.json; | ||
</RestoreSources> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters