Skip to content

Commit

Permalink
Merge pull request #6388 from dotnet/prv5
Browse files Browse the repository at this point in the history
Release artifacts for .NET 6 Preview 5
  • Loading branch information
leecow authored Jun 17, 2021
2 parents d73a854 + a3c8bbb commit 1232754
Show file tree
Hide file tree
Showing 11 changed files with 709 additions and 27 deletions.
1 change: 1 addition & 0 deletions release-notes/6.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

| Date | Release |
| :-- | :-- |
| 2021/06/17 | [6.0.0 Preview 5](https://github.com/dotnet/core/blob/main/release-notes/6.0/preview/6.0.0-preview.5.md) |
| 2021/05/25 | [6.0.0 Preview 4](https://github.com/dotnet/core/blob/main/release-notes/6.0/preview/6.0.0-preview.4.md) |
| 2021/04/08 | [6.0.0 Preview 3](https://github.com/dotnet/core/blob/main/release-notes/6.0/preview/6.0.0-preview.3.md) |
| 2021/03/11 | [6.0.0 Preview 2](https://github.com/dotnet/core/blob/main/release-notes/6.0/preview/6.0.0-preview.2.md) |
Expand Down
4 changes: 2 additions & 2 deletions release-notes/6.0/install-linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,14 @@ You can install .NET with a binary archive. This option is required if you want
The following workflow demonstrates downloading, unpacking, configuring, and running the .NET SDK from the command line. You may choose to do some of these tasks via the browser and functionality provided by your operating system.

```bash
~# curl -o dotnet.tar.gz https://download.visualstudio.microsoft.com/download/pr/25c7e38e-0a6a-4d66-ac4e-b550a44b8a98/49128be84b903799259e7bebe8e9d969/dotnet-sdk-6.0.100-preview.2.21155.3-linux-x64.tar.gz
~# curl -o dotnet.tar.gz https://download.visualstudio.microsoft.com/download/pr/919880af-ab5a-4b58-8058-7baaea4a09d1/4fe186d747cf416cbdc83fd8354e15ea/dotnet-sdk-6.0.100-preview.5.21302.13-linux-x64.tar.gz
~# mkdir dotnet
~# tar -C dotnet -xf dotnet.tar.gz
~# rm dotnet.tar.gz
~# export DOTNET_ROOT=~/dotnet
~# export PATH=$PATH:~/dotnet
~# dotnet --version
6.0.100-preview.2.21155.3
6.0.100-preview.5.21302.13
```

The `DOTNET_ROOT` environment variable is required to launch an application with their executables (like `myapp.exe`). The executables look for this environment variable to find the runtime if it isn't installed in its regular location. The `PATH` environment variable must be updated if you want to use `dotnet` without absolute paths to its location. Setting both of these environment variables is optional.
Expand Down
4 changes: 2 additions & 2 deletions release-notes/6.0/install-macos.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ You can install .NET with a binary archive. This option is required if you want
The following workflow demonstrates downloading, unpacking, configuring, and running the .NET SDK from the command line. You may choose to do some of these tasks via the browser and functionality provided by your operating system.

```bash
~# curl -o dotnet.tar.gz https://download.visualstudio.microsoft.com/download/pr/25c7e38e-0a6a-4d66-ac4e-b550a44b8a98/49128be84b903799259e7bebe8e9d969/dotnet-sdk-6.0.100-preview.2.21155.3-linux-x64.tar.gz
~# curl -o dotnet.tar.gz https://download.visualstudio.microsoft.com/download/pr/919880af-ab5a-4b58-8058-7baaea4a09d1/4fe186d747cf416cbdc83fd8354e15ea/dotnet-sdk-6.0.100-preview.5.21302.13-linux-x64.tar.gz
~# mkdir dotnet
~# tar -C dotnet -xf dotnet.tar.gz
~# rm dotnet.tar.gz
~# export DOTNET_ROOT=~/dotnet
~# export PATH=$PATH:~/dotnet
~# dotnet --version
6.0.100-preview.2.21155.3
6.0.100-preview.5.21302.13
```

The `DOTNET_ROOT` environment variable is required to launch an application with their executables (like `myapp.exe`). The executables look for this environment variable to find the runtime if it isn't installed in its regular location. The `PATH` environment variable must be updated if you want to use `dotnet` without absolute paths to its location. Setting both of these environment variables is optional.
Expand Down
46 changes: 46 additions & 0 deletions release-notes/6.0/install-maui.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Install .NET Multi-platform App UI Workloads

To check your environment for dependencies and obtain the latest .NET MAUI SDKs, we recommend using the `maui-check` dotnet tool.

```console
$ dotnet tool install -g redth.net.maui.check
```

Then run the tool and follow the instructions presented:

```console
$ maui-check
```

Optionally, you can also use `dotnet workload install` from the command line to install individual SDKs:

```console
$ dotnet workload install microsoft-android-sdk-full
$ dotnet workload install microsoft-ios-sdk-full
$ dotnet workload install microsoft-maccatalyst-sdk-full
$ dotnet workload install microsoft-macos-sdk-full
$ dotnet workload install microsoft-tvos-sdk-full
```

See the [dotnet/maui-samples](https://github.com/dotnet/maui-samples/) repo for sample projects and further details about getting started.

### Android

Prerequisites:

* [Install .NET 6.0.0 Preview 5](#downloads)
* You will need the Android SDK installed as well as `Android SDK Platform 30`. One way to acquire this is to install the Xamarin workload in the Visual Studio installer. You can manage Android SDKs from `Tools > Android > Android SDK Manager` from within Visual Studio.

### iOS, Mac Catalyst, and macOS (Cocoa)

Prerequisites:

* [Install .NET 6.0.0 Preview 5](#downloads)
* Xcode 12.5

## Downloads

Download links are provided for each of the distributions at:

- [Microsoft .NET website](https://dotnet.microsoft.com/download/dotnet/6.0)
- [.NET 6 release notes](README.md)
4 changes: 2 additions & 2 deletions release-notes/6.0/install-windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ You can install .NET with a binary archive. This option is required if you want
The following workflow demonstrates downloading, unpacking, configuring, and running the .NET SDK from the command line. You may choose to do some of these tasks via the browser and functionality provided by your operating system.

```console
C:\>curl -o dotnet.zip https://download.visualstudio.microsoft.com/download/pr/5b31ca8e-f684-4de7-9889-c53ce6cf9a3c/e85b1ef8dc6004c5f5bd0019771b21c5/dotnet-sdk-6.0.100-preview.2.21155.3-win-x64.zip
C:\>curl -o dotnet.zip https://download.visualstudio.microsoft.com/download/pr/74448616-c6d2-40bf-b6da-aa3a6c1009ab/62702150054089e2961aaf32e8ab3ffc/dotnet-sdk-6.0.100-preview.5.21302.13-win-x64.zip
C:\>tar -C dotnet -xf dotnet.zip
C:\>del dotnet.zip
C:\>set DOTNET_ROOT=C:\dotnet
C:\>set PATH=%PATH%;C:\dotnet
C:\>dotnet --version
6.0.100-preview.2.21155.3
6.0.100-preview.5.21302.13
```

The `DOTNET_ROOT` environment variable is required to launch an application with their executables (like `myapp.exe`). The executables look for this environment variable to find the runtime if it isn't installed in its regular location. The `PATH` environment variable must be updated if you want to use `dotnet` without absolute paths to its location. Setting both of these environment variables is optional.
Expand Down
21 changes: 12 additions & 9 deletions release-notes/6.0/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ Operating system specific instructions:
- [macOS](install-macos.md)
- [Windows](install-windows.md)

Install .NET Multi-platform App UI Workloads:
- [MAUI](install-maui.md)

## Distributions

The following distributions are available for all operating systems:
Expand All @@ -34,32 +37,32 @@ You can determine what is installed on your machine (assuming .NET is installed)
```console
C:\>dotnet --info
.NET SDK (reflecting any global.json):
Version: 6.0.100-preview.2.21155.3
Version: 6.0.100-preview.5.21302.13
Commit: 1a9103db2d

Runtime Environment:
OS Name: Windows
OS Version: 10.0.17763
OS Platform: Windows
RID: win10-x64
Base Path: C:\Program Files\dotnet\sdk\6.0.100-preview.2.21155.3\
Base Path: C:\Program Files\dotnet\sdk\6.0.100-preview.5.21302.13\

Host (useful for support):
Version: 6.0.0-preview.2.21154.6
Version: 6.0.0-preview.5.21301.5
Commit: 3eaf1f316b

.NET SDKs installed:
6.0.100-preview.2.21155.3 [C:\Program Files\dotnet\sdk]
6.0.100-preview.5.21302.13 [C:\Program Files\dotnet\sdk]

.NET runtimes installed:
Microsoft.AspNetCore.App 6.0.0-preview.2.21154.6 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.NETCore.App 6.0.0-preview.2.21154.6 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.WindowsDesktop.App 6.0.0-preview.2.21154.2 [C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App]
Microsoft.AspNetCore.App 6.0.0-preview.5.21301.17 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.NETCore.App 6.0.0-preview.5.21301.5 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.WindowsDesktop.App 6.0.0-preview.5.21301.4 [C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App]
```

If you have the .NET SDK installed, you can also use `dotnet --version` as demonstrated in the following example:

```console
C:\>dotnet --version
6.0.100-preview.2.21155.3
```
6.0.100-preview.5.21302.13
```
Loading

0 comments on commit 1232754

Please sign in to comment.