Skip to content

Commit

Permalink
Add the URLs to allow constructing them from a given version
Browse files Browse the repository at this point in the history
Not really something our customers will do, but when dealing with
dog food builds this is invaluable.


Commit migrated from dotnet/corefx@d0ac67a
  • Loading branch information
terrajobst committed Apr 14, 2017
1 parent 090bb08 commit b347677
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion docs/libraries/project-docs/dogfooding.md
Original file line number Diff line number Diff line change
Expand Up @@ -236,4 +236,22 @@ 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.blob.core.windows.net/dotnet/master/Installers/$version$/dotnet-win-x64.$version$.exe
https://dotnetcli.blob.core.windows.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.blob.core.windows.net/dotnet/Sdk/$version$/dotnet-dev-win-x86.$version$.exe
https://dotnetcli.blob.core.windows.net/dotnet/Sdk/2.0.0-preview1-005791/dotnet-dev-win-x86.2.0.0-preview1-005791.exe
```


0 comments on commit b347677

Please sign in to comment.