Remove instances of myget in the docs and update to blob feed (dotnet/corefx#37334)
authorSantiago Fernandez Madero <safern@microsoft.com>
Wed, 1 May 2019 21:16:11 +0000 (14:16 -0700)
committerGitHub <noreply@github.com>
Wed, 1 May 2019 21:16:11 +0000 (14:16 -0700)
Commit migrated from https://github.com/dotnet/corefx/commit/0b1daee821fbb20df5daf002fd3b1d070d1380cf

docs/libraries/debugging/unix-instructions.md
docs/libraries/project-docs/dogfooding.md

index 20d37c8..33c8981 100644 (file)
@@ -33,7 +33,6 @@ It is also possible to debug .NET Core crash dumps using lldb and SOS. In order
 - Matching coreclr/corefx runtime bits from the crash. To get these, you should either:
   - Download the matching Jenkins archive onto your repro machine.
   - Check out the coreclr and corefx repositories at the appropriate commit and re-build the necessary portions.
-  - You can also download the matching "symbols" nuget package from myget.org. There is a "Download Symbols" button in the myget UI for this purpose.
 - lldb version 3.9. The SOS plugin (i.e. libsosplugin.so) provided is now built for lldb 3.9. In order to install lldb 3.9 just run the following commands:
 ```
 ~$ echo "deb http://llvm.org/apt/trusty/ llvm-toolchain-trusty-3.9 main" | sudo tee /etc/apt/sources.list.d/llvm.list
index fffc61f..0a771de 100644 (file)
@@ -47,7 +47,7 @@ To install additional .NET Core runtimes or SDKs:
 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:
 ```xml
 <packageSources>
-    <add key="myget.dotnetcore" value="https://dotnet.myget.org/F/dotnet-core/api/v3/index.json" />
+    <add key="dotnetcore-feed" value="https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json" />
     ...
 </packageSources>    
 ```
@@ -118,7 +118,7 @@ make it self-contained
     <OutputType>Exe</OutputType>
     <TargetFramework>netcoreapp3.0</TargetFramework>
     <!-- modify build in this line with version reported by `dotnet --info` as above under ".NET Core runtimes installed" -> Microsoft.NETCore.App -->
-    <!-- moreover, this can be any valid Microsoft.NETCore.App package version from https://dotnet.myget.org/feed/dotnet-core/package/nuget/Microsoft.NETCore.App -->
+    <!-- moreover, this can be any valid Microsoft.NETCore.App package version from https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json -->
     <RuntimeFrameworkVersion>3.0.0-preview-27218-01</RuntimeFrameworkVersion>
     <RuntimeIdentifier>win-x64</RuntimeIdentifier> <!-- make self-contained -->
   </PropertyGroup>
@@ -167,13 +167,13 @@ Note these instructions above were only about updates to the binaries that are p
 
 By default the dogfooding dotnet SDK will create a Nuget.Config file next to your project, if it doesn't
 you can create one. Your config file will need a source for your local corefx package directory as well
-as a reference to our nightly dotnet-core feed on myget. The Nuget.Config file content should be:
+as a reference to our nightly dotnet-core blob feed. The Nuget.Config file content should be:
 
 ```xml
 <configuration>
   <packageSources>
     <add key="local coreclr" value="D:\git\corefx\artifacts\packages\Debug" /> <!-- Change this to your own output path -->
-    <add key="dotnet-core" value="https://dotnet.myget.org/F/dotnet-core/api/v3/index.json" />
+    <add key="dotnetcore-feed" value="https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json" />
   </packageSources>
 </configuration>
 ```