Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorImmo Landwerth <immo@landwerth.net>2017-04-20 21:22:19 +0300
committerGitHub <noreply@github.com>2017-04-20 21:22:19 +0300
commitb63d09c084c217f98bd5864bcd41b5dede7eece3 (patch)
tree1a11886c1c90ff29ca2a2b4cc6033a71d3619a77 /Documentation
parent8d510568181286720d3c03478cfd2e3353130c64 (diff)
parentdca66a0210d4ea1e487700ab6ad06340a70e9313 (diff)
Merge pull request #18388 from terrajobst/specific-buils
Add the URLs to allow constructing them from a given version
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/project-docs/dogfooding.md18
1 files changed, 17 insertions, 1 deletions
diff --git a/Documentation/project-docs/dogfooding.md b/Documentation/project-docs/dogfooding.md
index 0cf4126e4f..016d4cea0a 100644
--- a/Documentation/project-docs/dogfooding.md
+++ b/Documentation/project-docs/dogfooding.md
@@ -236,4 +236,20 @@ need to modify your .csproj to target netcoreapp2.0 and reference the nightly bu
</PropertyGroup>
```
-In a future update to Visual Studio, it will no longer be necessary to make this edit. \ No newline at end of file
+In a future update to Visual Studio, it will no longer be necessary to make this edit.
+
+## Finding specific builds
+
+The URL scheme for the runtime is as follows:
+
+```
+https://dotnetcli.azureedge.net/dotnet/master/Installers/$version$/dotnet-$os$-$arch$.$version$.exe
+https://dotnetcli.azureedge.net/dotnet/master/Installers/2.0.0-preview1-001915-00/dotnet-win-x64.2.0.0-preview1-001915-00.exe
+```
+
+The URL scheme for the SDK & CLI is as follows:
+
+```
+https://dotnetcli.azureedge.net/dotnet/Sdk/$version$/dotnet-dev-$os$-$arch.$version$.exe
+https://dotnetcli.azureedge.net/dotnet/Sdk/2.0.0-preview1-005791/dotnet-dev-win-x86.2.0.0-preview1-005791.exe
+```