Skip to content

Commit

Permalink
Merge pull request dotnet#18388 from terrajobst/specific-buils
Browse files Browse the repository at this point in the history
Add the URLs to allow constructing them from a given version
  • Loading branch information
terrajobst authored Apr 20, 2017
2 parents 8d51056 + dca66a0 commit b63d09c
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion Documentation/project-docs/dogfooding.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
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
```

0 comments on commit b63d09c

Please sign in to comment.