From 371f90e6ab5f92019363a9b78f02f4a3c044ca1c Mon Sep 17 00:00:00 2001 From: Ganbarukamo41 Date: Tue, 17 Sep 2019 01:15:28 +0900 Subject: [PATCH] Update dogfooding.md to include other blob feeds required for dogfooding (dotnet/corefx#41123) * Update dogfooding.md to include other feeds * Add a few more blob feeds that are listed in https://github.com/dotnet/core-sdk#installers-and-binaries, which are required to properly dogfood nightly SDKs * For example, adding only the core blob may result in build failures due to failures restoring packages that are distributed from ASP.NET feeds * Replace MyGet with dotnet-blob feeds, since MyGet isn't used anymore * Remove duplicate feed that's added by mistake Commit migrated from https://github.com/dotnet/corefx/commit/115035527ef4179425be7116756cf4e69e9f4a79 --- docs/libraries/project-docs/dogfooding.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/libraries/project-docs/dogfooding.md b/docs/libraries/project-docs/dogfooding.md index 05e8626..53fb92e 100644 --- a/docs/libraries/project-docs/dogfooding.md +++ b/docs/libraries/project-docs/dogfooding.md @@ -44,10 +44,16 @@ To install additional .NET Core runtimes or SDKs: https://aka.ms/dotnet-download ``` -4. Our nightly builds are uploaded to MyGet, not NuGet - so ensure the .NET Core MyGet feed is in your nuget configuration in case you need other packages from .NET Core that aren't included in the download. For example, on Windows you could edit `%userprofile%\appdata\roaming\nuget\nuget.config` or on Linux edit `~/.nuget/NuGet/NuGet.Config` to add this line: +4. Our nightly builds are uploaded to dotnet-blob feeds, not NuGet - so ensure the .NET Core blob feed is in your nuget configuration in case you need other packages from .NET Core that aren't included in the download. For example, on Windows you could edit `%userprofile%\appdata\roaming\nuget\nuget.config` or on Linux edit `~/.nuget/NuGet/NuGet.Config` to add these line: ```xml - + + + + + + + ... ``` -- 2.7.4