dogfooding.md 27.8 KB
Newer Older
1
# Dogfooding daily builds of .NET
I
Immo Landwerth 已提交
2

3
This document provides the steps necessary to consume a latest development build of .NET runtime and SDK.
4
Example below is for 7.0 but similar steps should work for other versions as well.
I
Immo Landwerth 已提交
5

6
## Obtaining daily builds of NuGet packages
7

8
If you are only looking to get fixes for an individual NuGet package, and don't need a preview version of the entire runtime, you can add the development package feed to your `NuGet.config` file.  The easiest way to do this is by using the dotnet CLI:
9

10
**(Recommended)** Create a local NuGet.Config file for your solution, if don't already have one.  Using a local NuGet.Config file will enable the development feed as a package source for projects in the current directory only.
11 12 13 14 15 16
```
dotnet new nugetconfig
```

Next, add the package source to NuGet.Config with the [dotnet nuget add source](https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-nuget-add-source) command:
```
17
dotnet nuget add source -n dotnet7 https://dnceng.pkgs.visualstudio.com/public/_packaging/dotnet7/nuget/v3/index.json
18 19 20 21
```

Then, you will be able to add the latest prerelease version of the desired package to your project.

22
**Example:** To add version 7.0-preview.5.22226.4 of the System.Data.OleDb package, use the [dotnet add package](https://docs.microsoft.com/en-us/dotnet/core/tools/dotnet-add-package) command:
23
```
24
dotnet add package System.Data.OleDb -v 7.0-preview.5.22226.4
25 26
```

27
To use daily builds of the entire runtime, follow the steps given in the rest of this document instead.
28

I
Immo Landwerth 已提交
29 30
## Install prerequisites

31
1. Acquire the latest development .NET SDK by downloading and extracting a zip/tarball or using an installer from the [installers and binaries table in dotnet/installer](https://github.com/dotnet/installer#installers-and-binaries) (for example, https://aka.ms/dotnet/7.0/daily/dotnet-sdk-win-x64.zip).
32

33
2. If you are using a local copy of the dotnet CLI, take care that when you type `dotnet` you do not inadvertently pick up a different copy that you may have in your path. On Windows, for example, if you use a Command Prompt, a global copy may be in the path, so use the fully qualified path to your local `dotnet` (e.g. `C:\dotnet\dotnet.exe`). If you receive an error "error NETSDK1045:  The current .NET SDK does not support targeting .NET 7.0." then you may be executing an older `dotnet`.
34

35
After setting up dotnet you can verify you are using the dogfooding version by executing `dotnet --info`. Here is an example output at the time of writing:
36
```
37
>dotnet --info
38 39 40
.NET SDK:
 Version:   7.0.100-preview.5.22226.4
 Commit:    fc127ac5a4
41 42 43

Runtime Environment:
 OS Name:     Windows
44
 OS Version:  10.0.22616
45 46
 OS Platform: Windows
 RID:         win10-x64
47
 Base Path:   C:\Program Files\dotnet\sdk\7.0.100-preview.5.22226.4\
48

49 50
global.json file:
  Not found
51

52 53 54 55
Host:
  Version:      7.0.0-preview.5.22224.3
  Architecture: x64
  Commit:       47d9c43ab1
56

57 58
.NET SDKs installed:
  7.0.100-preview.5.22226.4 [C:\Program Files\dotnet\sdk]
59

60 61 62 63
.NET runtimes installed:
  Microsoft.NETCore.App 7.0.0-preview.5.22224.3 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]

Download .NET:
64
  https://aka.ms/dotnet-download
65 66 67 68

Learn about .NET Runtimes and SDKs:
  https://aka.ms/dotnet/runtimes-sdk-info

69 70
```

71
3. Our daily builds are uploaded to development feed, not NuGet - so ensure the development feed is in your nuget configuration in case you need other packages 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 lines:
72 73
```xml
<packageSources>
74
    <add key="dotnet7" value="https://dnceng.pkgs.visualstudio.com/public/_packaging/dotnet7/nuget/v3/index.json" />
75
    ...
76
</packageSources>
77 78
```
(Documentation for configuring feeds is [here](https://docs.microsoft.com/en-us/nuget/consume-packages/configuring-nuget-behavior).)
I
Immo Landwerth 已提交
79 80 81 82

## Setup the project

1. Create a new project
83
    - Create a new folder for your app and change to that folder
84
    - Create project file by running `dotnet new console`
85

86
2. Restore packages so that you're ready to play:
I
Immo Landwerth 已提交
87 88 89 90 91 92 93 94 95 96 97 98

```
$ dotnet restore
```

## Consume the new build

```
$ dotnet run
```

Rinse and repeat!
99

100
## Advanced Scenario - Using a daily build of Microsoft.NETCore.App
101 102

When using the above instructions, your application will run against the same
103
.NET runtime that comes with the SDK. That works fine to get up and
104
running quickly. However, there are times when you need to use a daily build
105 106 107 108 109
of Microsoft.NETCore.App which hasn't made its way into the SDK yet. To enable
this, there are two options you can take.

### Option 1: Framework-dependent

110
This is the default case for applications - running against an installed .NET runtime.
111

112
1. You still need to install the prerequisite .NET SDK from above.
113 114
2. Optionally, install the specific .NET runtime you require globally or download get the latest one available from the [daily build table](#daily-builds-table)
3. Modify your .csproj to reference the daily build of Microsoft.NETCore.App
115 116 117 118

```XML
  <PropertyGroup>
    <OutputType>Exe</OutputType>
119 120
    <!-- Ensure that the target framework is correct e.g. 'net7.0' -->
    <TargetFramework>net7.0</TargetFramework>
121
    <!-- modify version in this line with one reported by `dotnet --info` under ".NET runtimes installed" -> Microsoft.NETCore.App -->
122
    <RuntimeFrameworkVersion>7.0.0-preview.5.22224.3</RuntimeFrameworkVersion>
123 124 125 126 127 128 129 130 131 132
  </PropertyGroup>
```

```
$ dotnet restore
$ dotnet run
```

### Option 2: Self-contained

133
In this case, the .NET runtime will be published along with your application.
134

135
1. You still need to install the prerequisite .NET SDK from above.
136
2. Modify your .csproj to reference the daily build of Microsoft.NETCore.App *and*
137
make it self-contained by adding a RuntimeIdentifier (RID).
138 139 140 141

```XML
  <PropertyGroup>
    <OutputType>Exe</OutputType>
142 143
    <!-- Ensure that the target framework is correct e.g. 'net7.0' -->
    <TargetFramework>net7.0</TargetFramework>
144
    <!-- modify build in this line with version reported by `dotnet --info` as above under ".NET runtimes installed" -> Microsoft.NETCore.App -->
145
    <!-- moreover, this can be any valid Microsoft.NETCore.App package version from https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet7/nuget/v3/index.json -->
146
    <RuntimeFrameworkVersion>7.0.0-preview.5.22224.3</RuntimeFrameworkVersion>
147
    <RuntimeIdentifier>win-x64</RuntimeIdentifier> <!-- RID to make it self-contained -->
148 149 150 151 152 153
  </PropertyGroup>
```

```
$ dotnet restore
$ dotnet publish
154
$ bin\Debug\net7.0\win-x64\publish\App.exe
155
```
D
Dan Moseley 已提交
156

157
### Daily builds table
J
Juan Hoyos 已提交
158 159 160 161 162 163 164 165

<!--
  To update this table, run 'build.sh/cmd RegenerateDownloadTable'. See
  'tools-local/regenerate-readme-table.proj' to add or remove rows or columns,
  and add links below to fill out the table's contents.
-->
<!-- BEGIN generated table -->

166
| Platform | Main |
J
Juan Hoyos 已提交
167
| --- |  :---: |
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
| **Windows (x64)** | <br>[Installer][win-x64-installer-7.0.X] ([Checksum][win-x64-installer-checksum-7.0.X])<br>[zip][win-x64-zip-7.0.X] ([Checksum][win-x64-zip-checksum-7.0.X]) |
| **Windows (x86)** | <br>[Installer][win-x86-installer-7.0.X] ([Checksum][win-x86-installer-checksum-7.0.X])<br>[zip][win-x86-zip-7.0.X] ([Checksum][win-x86-zip-checksum-7.0.X]) |
| **Windows (arm64)** | <br>[Installer][win-arm64-installer-7.0.X] ([Checksum][win-arm64-installer-checksum-7.0.X])<br>[zip][win-arm64-zip-7.0.X] ([Checksum][win-arm64-zip-checksum-7.0.X]) |
| **macOS (x64)** | <br>[Installer][osx-x64-installer-7.0.X] ([Checksum][osx-x64-installer-checksum-7.0.X])<br>[tar.gz][osx-x64-targz-7.0.X] ([Checksum][osx-x64-targz-checksum-7.0.X]) |
| **macOS (arm64)** | <br>[Installer][osx-arm64-installer-7.0.X] ([Checksum][osx-arm64-installer-checksum-7.0.X])<br>[tar.gz][osx-arm64-targz-7.0.X] ([Checksum][osx-arm64-targz-checksum-7.0.X]) |
| **Linux (x64)** (for glibc based OS) | <br>[tar.gz][linux-x64-targz-7.0.X] ([Checksum][linux-x64-targz-checksum-7.0.X]) |
| **Linux (armhf)** (for glibc based OS) | <br>[tar.gz][linux-arm-targz-7.0.X] ([Checksum][linux-arm-targz-checksum-7.0.X]) |
| **Linux (arm64)** (for glibc based OS) | <br>[tar.gz][linux-arm64-targz-7.0.X] ([Checksum][linux-arm64-targz-checksum-7.0.X]) |
| **Linux-musl (x64)** | <br>[tar.gz][linux-musl-x64-targz-7.0.X] ([Checksum][linux-musl-x64-targz-checksum-7.0.X]) |
| **Linux-musl (arm)** | <br>[tar.gz][linux-musl-arm-targz-7.0.X] ([Checksum][linux-musl-arm-targz-checksum-7.0.X]) |
| **Linux-musl (arm64)** | <br>[tar.gz][linux-musl-arm64-targz-7.0.X] ([Checksum][linux-musl-arm64-targz-checksum-7.0.X]) |
| **Dpkg Based Systems (x64)** | <br>[Runtime-Deps][deb-runtime-deps-7.0.X] ([Checksum][deb-runtime-deps-checksum-7.0.X])<br>[Host][deb-host-7.0.X] ([Checksum][deb-host-checksum-7.0.X])<br>[App Hosts][deb-apphost-pack-7.0.X] ([Checksum][deb-apphost-pack-checksum-7.0.X])<br>[Host FX Resolver][deb-hostfxr-7.0.X] ([Checksum][deb-hostfxr-checksum-7.0.X])<br>[Targeting Pack][deb-targeting-pack-7.0.X] ([Checksum][deb-targeting-pack-checksum-7.0.X])<br>[Shared Framework][deb-sharedfx-7.0.X] ([Checksum][deb-sharedfx-checksum-7.0.X]) |
| **CentOS 7 (x64)** | <br>[Runtime-Deps][centos-7-runtime-deps-7.0.X] ([Checksum][centos-7-runtime-deps-checksum-7.0.X])<br>[Host][centos-7-host-7.0.X] ([Checksum][centos-7-host-checksum-7.0.X])<br>[App Hosts][centos-7-apphost-pack-7.0.X] ([Checksum][centos-7-apphost-pack-checksum-7.0.X])<br>[Host FX Resolver][centos-7-hostfxr-7.0.X] ([Checksum][centos-7-hostfxr-checksum-7.0.X])<br>[Targeting Pack][centos-7-targeting-pack-7.0.X] ([Checksum][centos-7-targeting-pack-checksum-7.0.X])<br>[Shared Framework][centos-7-sharedfx-7.0.X] ([Checksum][centos-7-sharedfx-checksum-7.0.X]) |
| **RHEL 7.2 (x64)** | <br>[Host][rhel7-host-7.0.X] ([Checksum][rhel7-host-checksum-7.0.X])<br>[App Hosts][rhel7-apphost-pack-7.0.X] ([Checksum][rhel7-apphost-pack-checksum-7.0.X])<br>[Host FX Resolver][rhel7-hostfxr-7.0.X] ([Checksum][rhel7-hostfxr-checksum-7.0.X])<br>[Targeting Pack][rhel7-targeting-pack-7.0.X] ([Checksum][rhel7-targeting-pack-checksum-7.0.X])<br>[Shared Framework][rhel7-sharedfx-7.0.X] ([Checksum][rhel7-sharedfx-checksum-7.0.X]) |
| **Fedora 27 (x64)** | <br>[Runtime-Deps][fedora-27-runtime-deps-7.0.X] ([Checksum][fedora-27-runtime-deps-checksum-7.0.X])<br>[Host][fedora-27-host-7.0.X] ([Checksum][fedora-27-host-checksum-7.0.X])<br>[App Hosts][fedora-27-apphost-pack-7.0.X] ([Checksum][fedora-27-apphost-pack-checksum-7.0.X])<br>[Host FX Resolver][fedora-27-hostfxr-7.0.X] ([Checksum][fedora-27-hostfxr-checksum-7.0.X])<br>[Targeting Pack][fedora-27-targeting-pack-7.0.X] ([Checksum][fedora-27-targeting-pack-checksum-7.0.X])<br>[Shared Framework][fedora-27-sharedfx-7.0.X] ([Checksum][fedora-27-sharedfx-checksum-7.0.X]) |
| **SLES 12 (x64)** | <br>[Runtime-Deps][sles-12-runtime-deps-7.0.X] ([Checksum][sles-12-runtime-deps-checksum-7.0.X])<br>[Host][sles-12-host-7.0.X] ([Checksum][sles-12-host-checksum-7.0.X])<br>[App Hosts][sles-12-apphost-pack-7.0.X] ([Checksum][sles-12-apphost-pack-checksum-7.0.X])<br>[Host FX Resolver][sles-12-hostfxr-7.0.X] ([Checksum][sles-12-hostfxr-checksum-7.0.X])<br>[Targeting Pack][sles-12-targeting-pack-7.0.X] ([Checksum][sles-12-targeting-pack-checksum-7.0.X])<br>[Shared Framework][sles-12-sharedfx-7.0.X] ([Checksum][sles-12-sharedfx-checksum-7.0.X]) |
| **OpenSUSE 42 (x64)** | <br>[Runtime-Deps][OpenSUSE-42-runtime-deps-7.0.X] ([Checksum][OpenSUSE-42-runtime-deps-checksum-7.0.X])<br>[Host][OpenSUSE-42-host-7.0.X] ([Checksum][OpenSUSE-42-host-checksum-7.0.X])<br>[App Hosts][OpenSUSE-42-apphost-pack-7.0.X] ([Checksum][OpenSUSE-42-apphost-pack-checksum-7.0.X])<br>[Host FX Resolver][OpenSUSE-42-hostfxr-7.0.X] ([Checksum][OpenSUSE-42-hostfxr-checksum-7.0.X])<br>[Targeting Pack][OpenSUSE-42-targeting-pack-7.0.X] ([Checksum][OpenSUSE-42-targeting-pack-checksum-7.0.X])<br>[Shared Framework][OpenSUSE-42-sharedfx-7.0.X] ([Checksum][OpenSUSE-42-sharedfx-checksum-7.0.X]) |
J
Juan Hoyos 已提交
185 186 187 188 189 190 191

<!-- END generated table -->

*Note: Our Linux packages (.deb and .rpm) are put together slightly differently than the Windows and Mac specific installers. Instead of combining everything, we have separate component packages that depend on each other. If you're installing these directly from the installer files (via dpkg or similar), then you'll need to install them in the order presented above.*

<!-- BEGIN links to include in table -->

192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372
[win-x64-badge-7.0.X]: https://aka.ms/dotnet/7.0/daily/sharedfx_win-x64_Release_version_badge.svg?no-cache
[win-x64-version-7.0.X]: https://aka.ms/dotnet/7.0/daily/runtime-productVersion.txt
[win-x64-sdkinstaller-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-sdk-win-x64.exe
[win-x64-installer-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-win-x64.exe
[win-x64-installer-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-win-x64.exe.sha512
[win-x64-zip-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-win-x64.zip
[win-x64-zip-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-win-x64.zip.sha512
[win-x64-nethost-zip-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-nethost-win-x64.zip
[win-x64-symbols-zip-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-symbols-win-x64.zip

[win-x86-badge-7.0.X]: https://aka.ms/dotnet/7.0/daily/sharedfx_win-x86_Release_version_badge.svg?no-cache
[win-x86-version-7.0.X]: https://aka.ms/dotnet/7.0/daily/runtime-productVersion.txt
[win-x86-sdkinstaller-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-sdk-win-x86.exe
[win-x86-installer-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-win-x86.exe
[win-x86-installer-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-win-x86.exe.sha512
[win-x86-zip-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-win-x86.zip
[win-x86-zip-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-win-x86.zip.sha512
[win-x86-nethost-zip-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-nethost-win-x86.zip
[win-x86-symbols-zip-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-symbols-win-x86.zip

[win-arm64-badge-7.0.X]: https://aka.ms/dotnet/7.0/daily/sharedfx_win-arm64_Release_version_badge.svg?no-cache
[win-arm64-version-7.0.X]: https://aka.ms/dotnet/7.0/daily/runtime-productVersion.txt
[win-arm64-sdkinstaller-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-sdk-win-arm64.exe
[win-arm64-installer-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-win-arm64.exe
[win-arm64-installer-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-win-arm64.exe.sha512
[win-arm64-zip-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-win-arm64.zip
[win-arm64-zip-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-win-arm64.zip.sha512
[win-arm64-nethost-zip-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-nethost-win-arm64.zip
[win-arm64-symbols-zip-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-symbols-win-arm64.zip

[osx-x64-badge-7.0.X]: https://aka.ms/dotnet/7.0/daily/sharedfx_osx-x64_Release_version_badge.svg?no-cache
[osx-x64-version-7.0.X]: https://aka.ms/dotnet/7.0/daily/runtime-productVersion.txt
[osx-x64-sdkinstaller-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-sdk-osx-x64.pkg
[osx-x64-installer-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-osx-x64.pkg
[osx-x64-installer-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-osx-x64.pkg.sha512
[osx-x64-targz-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-osx-x64.tar.gz
[osx-x64-targz-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-osx-x64.tar.gz.sha512
[osx-x64-nethost-targz-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-nethost-osx-x64.tar.gz
[osx-x64-symbols-targz-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-symbols-osx-x64.tar.gz

[osx-arm64-badge-7.0.X]: https://aka.ms/dotnet/7.0/daily/sharedfx_osx-arm64_Release_version_badge.svg?no-cache
[osx-arm64-version-7.0.X]: https://aka.ms/dotnet/7.0/daily/runtime-productVersion.txt
[osx-arm64-sdkinstaller-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-sdk-osx-arm64.pkg
[osx-arm64-installer-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-osx-arm64.pkg
[osx-arm64-installer-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-osx-arm64.pkg.sha512
[osx-arm64-targz-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-osx-arm64.tar.gz
[osx-arm64-targz-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-osx-arm64.tar.gz.sha512
[osx-arm64-nethost-targz-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-nethost-osx-arm64.tar.gz
[osx-arm64-symbols-targz-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-symbols-osx-arm64.tar.gz

[linux-x64-badge-7.0.X]: https://aka.ms/dotnet/7.0/daily/sharedfx_linux-x64_Release_version_badge.svg?no-cache
[linux-x64-version-7.0.X]: https://aka.ms/dotnet/7.0/daily/runtime-productVersion.txt
[linux-x64-targz-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-linux-x64.tar.gz
[linux-x64-targz-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-linux-x64.tar.gz.sha512
[linux-x64-nethost-targz-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-nethost-linux-x64.tar.gz
[linux-x64-symbols-targz-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-symbols-linux-x64.tar.gz

[linux-arm-badge-7.0.X]: https://aka.ms/dotnet/7.0/daily/sharedfx_linux-arm_Release_version_badge.svg?no-cache
[linux-arm-version-7.0.X]: https://aka.ms/dotnet/7.0/daily/runtime-productVersion.txt
[linux-arm-targz-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-linux-arm.tar.gz
[linux-arm-targz-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-linux-arm.tar.gz.sha512
[linux-arm-nethost-targz-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-nethost-linux-arm.tar.gz
[linux-arm-symbols-targz-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-symbols-linux-arm.tar.gz

[linux-arm64-badge-7.0.X]: https://aka.ms/dotnet/7.0/daily/sharedfx_linux-arm64_Release_version_badge.svg?no-cache
[linux-arm64-version-7.0.X]: https://aka.ms/dotnet/7.0/daily/runtime-productVersion.txt
[linux-arm64-targz-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-linux-arm64.tar.gz
[linux-arm64-targz-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-linux-arm64.tar.gz.sha512
[linux-arm64-nethost-targz-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-nethost-linux-arm64.tar.gz
[linux-arm64-symbols-targz-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-symbols-linux-arm64.tar.gz

[deb-badge-7.0.X]: https://aka.ms/dotnet/7.0/daily/sharedfx_ubuntu.14.04-x64_Release_version_badge.svg?no-cache
[deb-version-7.0.X]: https://aka.ms/dotnet/7.0/daily/runtime-productVersion.txt
[deb-apphost-pack-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-apphost-pack-x64.deb
[deb-apphost-pack-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-apphost-pack-x64.deb.sha512
[deb-host-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-host-x64.deb
[deb-runtime-deps-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-deps-x64.deb
[deb-runtime-deps-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-deps-x64.deb.sha512
[deb-host-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-host-x64.deb.sha512
[deb-hostfxr-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-hostfxr-x64.deb
[deb-hostfxr-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-hostfxr-x64.deb.sha512
[deb-sharedfx-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-x64.deb
[deb-sharedfx-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-x64.deb.sha512
[deb-targeting-pack-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-targeting-pack-x64.deb
[deb-targeting-pack-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-targeting-pack-x64.deb.sha512

[rhel7-badge-7.0.X]: https://aka.ms/dotnet/7.0/daily/sharedfx_rhel.7-x64_Release_version_badge.svg?no-cache
[rhel7-version-7.0.X]: https://aka.ms/dotnet/7.0/daily/runtime-productVersion.txt
[rhel7-runtime-deps-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-deps-centos.7-x64.rpm
[rhel7-runtime-deps-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-deps-centos.7-x64.rpm.sha512
[rhel7-apphost-pack-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-apphost-pack-x64.rpm
[rhel7-apphost-pack-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-apphost-pack-x64.rpm.sha512
[rhel7-host-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-host-x64.rpm
[rhel7-host-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-host-x64.rpm.sha512
[rhel7-hostfxr-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-hostfxr-x64.rpm
[rhel7-hostfxr-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-hostfxr-x64.rpm.sha512
[rhel7-sharedfx-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-x64.rpm
[rhel7-sharedfx-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-x64.rpm.sha512
[rhel7-targeting-pack-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-targeting-pack-x64.rpm
[rhel7-targeting-pack-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-targeting-pack-x64.rpm.sha512

[centos-7-badge-7.0.X]: https://aka.ms/dotnet/7.0/daily/sharedfx_centos.7-x64_Release_version_badge.svg?no-cache
[centos-7-version-7.0.X]: https://aka.ms/dotnet/7.0/daily/runtime-productVersion.txt
[centos-7-runtime-deps-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-deps-centos.7-x64.rpm
[centos-7-runtime-deps-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-deps-centos.7-x64.rpm.sha512
[centos-7-apphost-pack-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-apphost-pack-x64.rpm
[centos-7-apphost-pack-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-apphost-pack-x64.rpm.sha512
[centos-7-host-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-host-x64.rpm
[centos-7-host-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-host-x64.rpm.sha512
[centos-7-hostfxr-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-hostfxr-x64.rpm
[centos-7-hostfxr-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-hostfxr-x64.rpm.sha512
[centos-7-sharedfx-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-x64.rpm
[centos-7-sharedfx-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-x64.rpm.sha512
[centos-7-targeting-pack-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-targeting-pack-x64.rpm
[centos-7-targeting-pack-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-targeting-pack-x64.rpm.sha512

[fedora-27-badge-7.0.X]: https://aka.ms/dotnet/7.0/daily/sharedfx_fedora.27-x64_Release_version_badge.svg?no-cache
[fedora-27-version-7.0.X]: https://aka.ms/dotnet/7.0/daily/runtime-productVersion.txt
[fedora-27-runtime-deps-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-deps-fedora.27-x64.rpm
[fedora-27-runtime-deps-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-deps-fedora.27-x64.rpm.sha512
[fedora-27-apphost-pack-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-apphost-pack-x64.rpm
[fedora-27-apphost-pack-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-apphost-pack-x64.rpm.sha512
[fedora-27-host-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-host-x64.rpm
[fedora-27-host-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-host-x64.rpm.sha512
[fedora-27-hostfxr-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-hostfxr-x64.rpm
[fedora-27-hostfxr-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-hostfxr-x64.rpm.sha512
[fedora-27-sharedfx-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-x64.rpm
[fedora-27-sharedfx-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-x64.rpm.sha512
[fedora-27-targeting-pack-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-targeting-pack-x64.rpm
[fedora-27-targeting-pack-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-targeting-pack-x64.rpm.sha512

[sles-12-badge-7.0.X]: https://aka.ms/dotnet/7.0/daily/sharedfx_sles.12-x64_Release_version_badge.svg?no-cache
[sles-12-version-7.0.X]: https://aka.ms/dotnet/7.0/daily/runtime-productVersion.txt
[sles-12-runtime-deps-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-deps-sles.12-x64.rpm
[sles-12-runtime-deps-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-deps-sles.12-x64.rpm.sha512
[sles-12-apphost-pack-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-apphost-pack-x64.rpm
[sles-12-apphost-pack-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-apphost-pack-x64.rpm.sha512
[sles-12-host-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-host-x64.rpm
[sles-12-host-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-host-x64.rpm.sha512
[sles-12-hostfxr-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-hostfxr-x64.rpm
[sles-12-hostfxr-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-hostfxr-x64.rpm.sha512
[sles-12-sharedfx-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-x64.rpm
[sles-12-sharedfx-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-x64.rpm.sha512
[sles-12-targeting-pack-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-targeting-pack-x64.rpm
[sles-12-targeting-pack-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-targeting-pack-x64.rpm.sha512

[OpenSUSE-42-badge-7.0.X]: https://aka.ms/dotnet/7.0/daily/sharedfx_opensuse.42-x64_Release_version_badge.svg?no-cache
[OpenSUSE-42-version-7.0.X]: https://aka.ms/dotnet/7.0/daily/runtime-productVersion.txt
[OpenSUSE-42-runtime-deps-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-deps-opensuse.42-x64.rpm
[OpenSUSE-42-runtime-deps-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-deps-opensuse.42-x64.rpm.sha512
[OpenSUSE-42-apphost-pack-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-apphost-pack-x64.rpm
[OpenSUSE-42-apphost-pack-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-apphost-pack-x64.rpm.sha512
[OpenSUSE-42-host-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-host-x64.rpm
[OpenSUSE-42-host-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-host-x64.rpm.sha512
[OpenSUSE-42-hostfxr-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-hostfxr-x64.rpm
[OpenSUSE-42-hostfxr-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-hostfxr-x64.rpm.sha512
[OpenSUSE-42-sharedfx-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-x64.rpm
[OpenSUSE-42-sharedfx-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-x64.rpm.sha512
[OpenSUSE-42-targeting-pack-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-targeting-pack-x64.rpm
[OpenSUSE-42-targeting-pack-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-targeting-pack-x64.rpm.sha512

[linux-musl-x64-badge-7.0.X]: https://aka.ms/dotnet/7.0/daily/sharedfx_linux-musl-x64_Release_version_badge.svg?no-cache
[linux-musl-x64-version-7.0.X]: https://aka.ms/dotnet/7.0/daily/runtime-productVersion.txt
[linux-musl-x64-targz-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-linux-musl-x64.tar.gz
[linux-musl-x64-targz-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-linux-musl-x64.tar.gz.sha512
[linux-musl-x64-nethost-targz-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-nethost-linux-musl-x64.tar.gz
[linux-musl-x64-symbols-targz-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-symbols-linux-musl-x64.tar.gz

[linux-musl-arm-badge-7.0.X]: https://aka.ms/dotnet/7.0/daily/sharedfx_linux-musl-arm_Release_version_badge.svg?no-cache
[linux-musl-arm-version-7.0.X]: https://aka.ms/dotnet/7.0/daily/runtime-productVersion.txt
[linux-musl-arm-targz-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-linux-musl-arm.tar.gz
[linux-musl-arm-targz-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-linux-musl-arm.tar.gz.sha512
[linux-musl-arm-nethost-targz-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-nethost-linux-musl-arm.tar.gz
[linux-musl-arm-symbols-targz-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-symbols-linux-musl-arm.tar.gz

[linux-musl-arm64-badge-7.0.X]: https://aka.ms/dotnet/7.0/daily/sharedfx_linux-musl-arm64_Release_version_badge.svg?no-cache
[linux-musl-arm64-version-7.0.X]: https://aka.ms/dotnet/7.0/daily/runtime-productVersion.txt
[linux-musl-arm64-targz-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-linux-musl-arm64.tar.gz
[linux-musl-arm64-targz-checksum-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-linux-musl-arm64.tar.gz.sha512
[linux-musl-arm64-nethost-targz-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-nethost-linux-musl-arm64.tar.gz
[linux-musl-arm64-symbols-targz-7.0.X]: https://aka.ms/dotnet/7.0/daily/dotnet-runtime-symbols-linux-musl-arm64.tar.gz
J
Juan Hoyos 已提交
373 374

<!-- END links to include in table -->