Skip to content

Commit

Permalink
Merge pull request #7283 from dotnet/net7prv2
Browse files Browse the repository at this point in the history
Artifacts for .NET 7 Preview 2
  • Loading branch information
dcwhittaker authored Mar 15, 2022
2 parents f741424 + 0727d1b commit 52b787a
Show file tree
Hide file tree
Showing 10 changed files with 651 additions and 27 deletions.
3 changes: 2 additions & 1 deletion release-notes/7.0/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# .NET 7

[.NET 7](https://devblogs.microsoft.com/dotnet/announcing-net-7-preview-1/) will be a [current release](../../release-policies.md) and will be supported for one year, from November 2022 to November 2023. It is [supported by Microsoft](../../microsoft-support.md) on [multiple operating systems](supported-os.md).
[.NET 7](https://devblogs.microsoft.com/dotnet/announcing-dotnet-7-preview-2/) will be a [current release](../../release-policies.md) and will be supported for one year, from November 2022 to November 2023. It is [supported by Microsoft](../../microsoft-support.md) on [multiple operating systems](supported-os.md).


- [Downloads](https://dotnet.microsoft.com/download/dotnet/7.0) (also see [Releases](#releases))
Expand All @@ -13,4 +13,5 @@

| Date | Release |
| :-- | :-- |
| 2022/03/15 | [7.0.0 Preview 2](https://github.com/dotnet/core/blob/main/release-notes/7.0/preview/7.0.0-preview.2.md) |
| 2022/02/17 | [7.0.0 Preview 1](https://github.com/dotnet/core/blob/main/release-notes/7.0/preview/7.0.0-preview.1.md) |
4 changes: 2 additions & 2 deletions release-notes/7.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 -Lo dotnet.tar.gz https://download.visualstudio.microsoft.com/download/pr/1af9d3c3-a20e-400c-abe5-3d80dec7b63b/803f8dc5cf21fb28245aba71a7fdbc05/dotnet-sdk-7.0.100-preview.1.22110.4-linux-x64.tar.gz
~# curl -Lo dotnet.tar.gz https://download.visualstudio.microsoft.com/download/pr/754fe8c6-9088-4a1e-87df-cfc5efdf1a9a/e4d3a877c112ef8d09c6c7e9a444ad9e/dotnet-sdk-7.0.100-preview.2.22153.17-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
7.0.100-preview.1.22110.4
7.0.100-preview.2.22153.17
```

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/7.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 -Lo dotnet.tar.gz https://download.visualstudio.microsoft.com/download/pr/39330fd9-ffa9-45f1-bb8f-1788f9477c26/06e55d3f9012f4c30b490b1f0d2cf41d/dotnet-sdk-7.0.100-preview.1.22110.4-osx-x64.tar.gz
~# curl -Lo dotnet.tar.gz https://download.visualstudio.microsoft.com/download/pr/344a9dcd-ad0a-49f5-990b-7933624c82df/8684f72d6429661c816330d0da5b42cc/dotnet-sdk-7.0.100-preview.2.22153.17-osx-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
7.0.100-preview.1.22110.4
7.0.100-preview.2.22153.17
```

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/7.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 -Lo dotnet.zip https://download.visualstudio.microsoft.com/download/pr/b9655c4b-1dcc-43dd-b5c6-63341995f584/9aa8c600352e6f3058a948f93bad5ddb/dotnet-sdk-7.0.100-preview.1.22110.4-win-x64.exe
C:\>curl -Lo dotnet.zip https://download.visualstudio.microsoft.com/download/pr/e904f60b-8b5a-46cc-a3c7-e37f87aa9aa2/ee9decc38b24f05e6edf8a63639653a1/dotnet-sdk-7.0.100-preview.2.22153.17-win-x64.exe
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
7.0.100-preview.1.22110.4
7.0.100-preview.2.22153.17
```

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
16 changes: 8 additions & 8 deletions release-notes/7.0/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,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: 7.0.100-preview.1.22110.4
Version: 7.0.100-preview.2.22153.17
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\7.0.100-preview.1.22101.1\
Base Path: C:\Program Files\dotnet\sdk\7.0.100-preview.2.22153.17\

Host (useful for support):
Version: 7.0.100-preview.1.22110.4
Version: 7.0.100-preview.2.22153.17
Commit: 3eaf1f316b

.NET SDKs installed:
7.0.100-preview.1.22110.4 [C:\Program Files\dotnet\sdk]
7.0.100-preview.2.22153.17 [C:\Program Files\dotnet\sdk]

.NET runtimes installed:
Microsoft.AspNetCore.App 7.0.100-preview.1.22081.6 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.NETCore.App 7.0.0-preview.1.21377.19 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.WindowsDesktop.App 7.0.0-preview.1.22077.5 [C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App]
Microsoft.AspNetCore.App 7.0.0-preview.2.22153.2 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.NETCore.App 7.0.100-preview.2.22153.17 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.WindowsDesktop.App 7.0.0-preview.2.22153.5 [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
7.0.100-preview.1.22110.4
7.0.100-preview.2.22153.17
```
Loading

0 comments on commit 52b787a

Please sign in to comment.