Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/core.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominique Whittaker <94140381+dcwhittaker@users.noreply.github.com>2022-03-15 19:38:41 +0300
committerGitHub <noreply@github.com>2022-03-15 19:38:41 +0300
commit52b787a3bf960db447336ee4358168c921f09c87 (patch)
tree8dce56e89d3de6dbf014308018b957b9fb5a0862
parentf741424c1a7d6b364c7cc144d4895dc137bf3d47 (diff)
parent0727d1b06e319184fe5c28675a73ce4c073f266f (diff)
Merge pull request #7283 from dotnet/net7prv2v7.0.0-preview.2
Artifacts for .NET 7 Preview 2
-rw-r--r--release-notes/7.0/README.md3
-rw-r--r--release-notes/7.0/install-linux.md4
-rw-r--r--release-notes/7.0/install-macos.md4
-rw-r--r--release-notes/7.0/install-windows.md4
-rw-r--r--release-notes/7.0/install.md16
-rw-r--r--release-notes/7.0/preview/7.0.0-preview.2.md153
-rw-r--r--release-notes/7.0/releases.json478
-rw-r--r--release-notes/README.md4
-rw-r--r--release-notes/releases-index.json8
-rw-r--r--releases.md4
10 files changed, 651 insertions, 27 deletions
diff --git a/release-notes/7.0/README.md b/release-notes/7.0/README.md
index 5eef8324..b818c551 100644
--- a/release-notes/7.0/README.md
+++ b/release-notes/7.0/README.md
@@ -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))
@@ -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) |
diff --git a/release-notes/7.0/install-linux.md b/release-notes/7.0/install-linux.md
index daf78e76..d0b4df5c 100644
--- a/release-notes/7.0/install-linux.md
+++ b/release-notes/7.0/install-linux.md
@@ -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.
diff --git a/release-notes/7.0/install-macos.md b/release-notes/7.0/install-macos.md
index f21a1263..72a1d9df 100644
--- a/release-notes/7.0/install-macos.md
+++ b/release-notes/7.0/install-macos.md
@@ -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.
diff --git a/release-notes/7.0/install-windows.md b/release-notes/7.0/install-windows.md
index 4609358b..db135d25 100644
--- a/release-notes/7.0/install-windows.md
+++ b/release-notes/7.0/install-windows.md
@@ -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.
diff --git a/release-notes/7.0/install.md b/release-notes/7.0/install.md
index 378e4252..a2f85f63 100644
--- a/release-notes/7.0/install.md
+++ b/release-notes/7.0/install.md
@@ -37,7 +37,7 @@ 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:
@@ -45,24 +45,24 @@ Runtime Environment:
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
```
diff --git a/release-notes/7.0/preview/7.0.0-preview.2.md b/release-notes/7.0/preview/7.0.0-preview.2.md
new file mode 100644
index 00000000..6c823067
--- /dev/null
+++ b/release-notes/7.0/preview/7.0.0-preview.2.md
@@ -0,0 +1,153 @@
+# .NET 7.0.0 Preview 2 - March 15, 2022
+
+The .NET 7.0.0 Preview 2 and .NET SDK 7.0.100-preview.2.22153.17 releases are available for download. The latest 7.0 release is always listed at [.NET 7.0 Releases](../README.md).
+
+## What's new in .NET 7 Preview 2
+
+.NET 7 is the next major release of .NET following .NET 6.0. You can see some of the new features available with .NET 7 Preview 2 at [dotnet/core #7107](https://github.com/dotnet/core/issues/7107).
+
+See the [.NET][dotnet-blog], [EF Core][ef-blog] and [ASP.NET Core][aspnet-blog] blogs for additional details.
+Here is list of some of the additions and updates we're excited to bring in Preview 2.
+
+* EntityFramework Core: [bugs][ef_bugs] | [features][ef_features]
+* .NET SDK [bugs][sdk_bugs]
+
+## Downloads
+
+| | SDK Installer<sup>1</sup> | SDK Binaries<sup>1</sup> | Runtime Installer | Runtime Binaries | ASP.NET Core Runtime |Windows Desktop Runtime |
+| --------- | :------------------------------------------: | :----------------------: | :---------------------------: | :-------------------------: | :-----------------: | :-----------------: |
+| Windows | [x86][dotnet-sdk-win-x86.exe] \| [x64][dotnet-sdk-win-x64.exe] \| [Arm64][dotnet-sdk-win-arm64.exe] | [x86][dotnet-sdk-win-x86.zip] \| [x64][dotnet-sdk-win-x64.zip] \| [Arm64][dotnet-sdk-win-arm64.zip] | [x86][dotnet-runtime-win-x86.exe] \| [x64][dotnet-runtime-win-x64.exe] \| [Arm64][dotnet-runtime-win-arm64.exe] | [x86][dotnet-runtime-win-x86.zip] \| [x64][dotnet-runtime-win-x64.zip] \| [Arm64][dotnet-runtime-win-arm64.zip] | [x86][aspnetcore-runtime-win-x86.exe] \| [x64][aspnetcore-runtime-win-x64.exe] \|<br> [Hosting Bundle][dotnet-hosting-win.exe]<sup>2</sup> | [x86][windowsdesktop-runtime-win-x86.exe] \| [x64][windowsdesktop-runtime-win-x64.exe] \| [Arm64][windowsdesktop-runtime-win-arm64.exe] |
+| macOS | [x64][dotnet-sdk-osx-x64.pkg] \| [ARM64][dotnet-sdk-osx-arm64.pkg] | [x64][dotnet-sdk-osx-x64.tar.gz] \| [ARM64][dotnet-sdk-osx-arm64.tar.gz] | [x64][dotnet-runtime-osx-x64.pkg] \| [ARM64][dotnet-runtime-osx-arm64.pkg] | [x64][dotnet-runtime-osx-x64.tar.gz] \| [ARM64][dotnet-runtime-osx-arm64.tar.gz]| [x64][aspnetcore-runtime-osx-x64.tar.gz] \| [ARM64][aspnetcore-runtime-osx-arm64.tar.gz] | - |<sup>1</sup>
+| Linux | [Snap and Package Manager](../install-linux.md) | [x64][dotnet-sdk-linux-x64.tar.gz] \| [Arm][dotnet-sdk-linux-arm.tar.gz] \| [Arm64][dotnet-sdk-linux-arm64.tar.gz] \| [Arm32 Alpine][dotnet-sdk-linux-musl-arm.tar.gz] \| [x64 Alpine][dotnet-sdk-linux-musl-x64.tar.gz] | [Packages (x64)][linux-packages] | [x64][dotnet-runtime-linux-x64.tar.gz] \| [Arm][dotnet-runtime-linux-arm.tar.gz] \| [Arm64][dotnet-runtime-linux-arm64.tar.gz] \| [Arm32 Alpine][dotnet-runtime-linux-musl-arm.tar.gz] \| [Arm64 Alpine][dotnet-runtime-linux-musl-arm64.tar.gz] \| [x64 Alpine][dotnet-runtime-linux-musl-x64.tar.gz] | [x64][aspnetcore-runtime-linux-x64.tar.gz]<sup>1</sup> \| [Arm][aspnetcore-runtime-linux-arm.tar.gz]<sup>1</sup> \| [Arm64][aspnetcore-runtime-linux-arm64.tar.gz]<sup>1</sup> \| [x64 Alpine][aspnetcore-runtime-linux-musl-x64.tar.gz] | - | <sup>1</sup> |
+| | [Checksums][checksums-sdk] | [Checksums][checksums-sdk] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime] | [Checksums][checksums-runtime]
+
+</br>
+
+1. Includes the .NET Runtime and ASP.NET Core Runtime
+2. For hosting stand-alone apps on Windows Servers. Includes the ASP.NET Core Module for IIS and can be installed separately on servers without installing .NET Runtime.
+
+</br>
+
+The .NET SDK includes a matching updated .NET Runtime. Downloading the Runtime or ASP.NET Core packages is not needed when installing the SDK.
+
+You can check your .NET SDK version by running the following command. The example version shown is for this release.
+
+```console
+$ dotnet --version
+7.0.100-preview.2.22153.17
+```
+
+## Docker Images
+
+The [.NET Docker images](https://hub.docker.com/_/microsoft-dotnet) have been updated for this release. The [.NET Docker samples](https://github.com/dotnet/dotnet-docker/blob/main/samples/README.md) show various ways to use .NET and Docker together. You can use the following command to try running the latest .NET 7.0 release in containers:
+
+```console
+docker run --rm mcr.microsoft.com/dotnet/samples
+```
+
+The following repos have been updated.
+
+* [dotnet/sdk](https://hub.docker.com/_/microsoft-dotnet-sdk/): .NET SDK
+* [dotnet/aspnet](https://hub.docker.com/_/microsoft-dotnet-aspnet/): ASP.NET Core Runtime
+* [dotnet/runtime](https://hub.docker.com/_/microsoft-dotnet-runtime/): .NET Runtime
+* [dotnet/runtime-deps](https://hub.docker.com/_/microsoft-dotnet-runtime-deps/): .NET Runtime Dependencies
+* [dotnet/samples](https://hub.docker.com/_/microsoft-dotnet-samples/): .NET Samples
+
+## Visual Studio Compatibility
+
+You need [Visual Studio 17.2 latest preview](https://visualstudio.microsoft.com) to use .NET 7.0 on Windows. On macOS, you need the latest version of [Visual Studio for Mac](https://visualstudio.microsoft.com/vs/mac/). The [C# extension](https://code.visualstudio.com/docs/languages/dotnet) for [Visual Studio Code](https://code.visualstudio.com/) supports .NET 7.0 and C# 9.
+
+
+## Feedback
+
+Your feedback is important and appreciated. We've created an issue at [dotnet/core #XXXX](https://github.com/dotnet/core/issues/XXXX) for your questions and comments.
+
+[blob-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/Runtime/
+[blob-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/
+[release-notes]: https://github.com/dotnet/core/blob/main/release-notes/7.0/preview/7.0.0-preview.2.md
+
+[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/7.0.0-preview.2-sha.txt
+[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/7.0.0-preview.2-sha.txt
+
+[linux-install]: https://docs.microsoft.com/dotnet/core/install/linux
+[linux-setup]: https://github.com/dotnet/core/blob/main/Documentation/linux-setup.md
+
+[dotnet-blog]: https://devblogs.microsoft.com/dotnet/announcing-dotnet-7-preview-2/
+[aspnet-blog]: https://devblogs.microsoft.com/aspnet/asp-net-core-updates-in-dotnet-7-preview-2
+[ef-blog]: https://devblogs.microsoft.com/dotnet/announcing-entity-framework-7-preview-2
+[ef_bugs]: https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A7.0.0-preview2+is%3Aclosed+label%3Atype-bug
+[ef_features]: https://github.com/dotnet/efcore/issues?q=is%3Aissue+milestone%3A7.0.0-preview2+is%3Aclosed+label%3Atype-enhancement
+
+[aspnet_bugs]: https://github.com/aspnet/AspNetCore/issues?q=is%3Aissue+milestone%3A7.0.0-preview2+label%3ADone+label%3Abug
+[aspnet_features]: https://github.com/aspnet/AspNetCore/issues?q=is%3Aissue+milestone%3A7.0.0-preview2+label%3ADone+label%3Aenhancement
+[runtime_bugs]: https://github.com/dotnet/runtime/issues?utf8=%E2%9C%93&q=is%3Aissue+milestone%3A7.0+label%3Abug+
+[runtime_features]: https://github.com/dotnet/runtime/issues?q=is%3Aissue+milestone%3A7.0+label%3Aenhancement
+
+[sdk_bugs]: https://github.com/dotnet/sdk/issues?q=is%3Aissue+is%3Aclosed+milestone%3A7.0.1xx
+[linux-packages]: 7.0.0-preview.2-install-instructions.md
+
+
+
+[//]: # ( Runtime 7.0.0-preview.2.22152.2)
+[dotnet-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/d75f42ab-f32a-4c71-9198-bfeb5051fbd0/ff39bd32601fdb583a13a06e979f152b/dotnet-runtime-7.0.0-preview.2.22152.2-linux-arm.tar.gz
+[dotnet-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/5154f383-6a09-41b3-bfcc-5958562e2c4b/b0fea89768d540f83ff10b8c3a556cc1/dotnet-runtime-7.0.0-preview.2.22152.2-linux-arm64.tar.gz
+[dotnet-runtime-linux-musl-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/796d0f81-e071-4a1e-87c4-fe39a4a4aa6d/73bffc4f91e2c8e89e24aff1f8ea43f3/dotnet-runtime-7.0.0-preview.2.22152.2-linux-musl-arm.tar.gz
+[dotnet-runtime-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/70e2d3e3-c5a2-4943-bd6d-0671a93e1871/22777c837aa91062b909d198226b3d5a/dotnet-runtime-7.0.0-preview.2.22152.2-linux-musl-arm64.tar.gz
+[dotnet-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/16edd568-b9a4-462c-9a5e-af010847c5c6/326f0f687857b536c3e2a45dbfd3617a/dotnet-runtime-7.0.0-preview.2.22152.2-linux-musl-x64.tar.gz
+[dotnet-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/d310a601-7f68-412a-a139-b8d6a037c9fd/b00941dc09d85a51b198117d8efdba8a/dotnet-runtime-7.0.0-preview.2.22152.2-linux-x64.tar.gz
+[dotnet-runtime-osx-arm64.pkg]: https://download.visualstudio.microsoft.com/download/pr/131656c4-1caf-4d50-abab-f2e297faa3c9/d0321edd361e67be278da7c3b7089430/dotnet-runtime-7.0.0-preview.2.22152.2-osx-arm64.pkg
+[dotnet-runtime-osx-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/ac1eefa5-d5a8-425a-a394-c6e2bc564e43/2c8cd64c7167cd9b444df6112ea95a2d/dotnet-runtime-7.0.0-preview.2.22152.2-osx-arm64.tar.gz
+[dotnet-runtime-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/9660c828-fb78-4fd7-85bc-3ab4e3dbb179/3c25335ff279f4e06c054e715b36f175/dotnet-runtime-7.0.0-preview.2.22152.2-osx-x64.pkg
+[dotnet-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/d1de2627-e6fc-4657-a614-59f87b3964e0/e04ea0fe25c1eb719cf1de4d6e7676f1/dotnet-runtime-7.0.0-preview.2.22152.2-osx-x64.tar.gz
+[dotnet-runtime-win-arm64.exe]: https://download.visualstudio.microsoft.com/download/pr/a138e0a5-a99b-490e-aa3b-e343c3f39e25/d868eae31c16dae1891a8780bf989bd1/dotnet-runtime-7.0.0-preview.2.22152.2-win-arm64.exe
+[dotnet-runtime-win-arm64.zip]: https://download.visualstudio.microsoft.com/download/pr/387cc604-3e60-4093-8ec7-097fc6ec83ea/c7e70f4ed32806a8f7acde94b9acc102/dotnet-runtime-7.0.0-preview.2.22152.2-win-arm64.zip
+[dotnet-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/76bb18a3-0fda-4a0d-9d2d-ce83667a2668/9534db4f3b885ef2ccdaa16d37cb3133/dotnet-runtime-7.0.0-preview.2.22152.2-win-x64.exe
+[dotnet-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/27fa0e6a-b4d1-4023-8467-d1eda2f2f8f0/a0ff83fc152ac1ca4ec59292d32baa5a/dotnet-runtime-7.0.0-preview.2.22152.2-win-x64.zip
+[dotnet-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/066b1423-93ca-49c1-8f23-8bfba3cf6e84/1b9584330bc342bec480156e17cd961e/dotnet-runtime-7.0.0-preview.2.22152.2-win-x86.exe
+[dotnet-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/f77a2a6e-4138-401d-ad1a-7f8cd8aa6c69/e0f5a9ccc9c225e481cb27cf155e3113/dotnet-runtime-7.0.0-preview.2.22152.2-win-x86.zip
+
+[//]: # ( WindowsDesktop 7.0.0-preview.2.22153.5)
+[windowsdesktop-runtime-win-arm64.exe]: https://download.visualstudio.microsoft.com/download/pr/6dbbbeeb-c11f-4f32-a165-0a73a17ae41e/f011743571c716a25911d62f21800650/windowsdesktop-runtime-7.0.0-preview.2.22153.5-win-arm64.exe
+[windowsdesktop-runtime-win-arm64.zip]: https://download.visualstudio.microsoft.com/download/pr/33697e18-1793-448a-954d-ced3dde002bd/3eef88084b2e4c8f4247c51862f84361/windowsdesktop-runtime-7.0.0-preview.2.22153.5-win-arm64.zip
+[windowsdesktop-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/15596c40-e6d3-4133-b04b-81fc9fbd532d/0bdd610ade324b0e67924169eeabded4/windowsdesktop-runtime-7.0.0-preview.2.22153.5-win-x64.exe
+[windowsdesktop-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/6f1acefd-0fb3-409b-b4a9-c81fc92b24aa/12ed761f2257431b9b573bf3819d8d16/windowsdesktop-runtime-7.0.0-preview.2.22153.5-win-x64.zip
+[windowsdesktop-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/0059c92c-a180-42aa-859f-b244054113ea/41293f683ae3491c01d3aa7b7dba9052/windowsdesktop-runtime-7.0.0-preview.2.22153.5-win-x86.exe
+[windowsdesktop-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/c2890582-8f9f-46ef-afcf-27aac666e3f3/a2e9a79ed9033efd8eae58dd3333919a/windowsdesktop-runtime-7.0.0-preview.2.22153.5-win-x86.zip
+
+[//]: # ( ASP 7.0.0-preview.2.22153.2)
+[aspnetcore-runtime-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/3f62c2be-99fb-418d-b98e-30d5d1d7e862/ea163ba205a0ac680d995e0f8d657bb7/aspnetcore-runtime-7.0.0-preview.2.22153.2-linux-arm.tar.gz
+[aspnetcore-runtime-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/91aba62d-7b61-46fd-bae9-a34299a01ec4/f0597bde0eab2c832ce30eef80583d4d/aspnetcore-runtime-7.0.0-preview.2.22153.2-linux-arm64.tar.gz
+[aspnetcore-runtime-linux-musl-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/a67f9239-04e7-4194-8b90-3f22210dc06d/6a64962a90094707298d79b550271ff3/aspnetcore-runtime-7.0.0-preview.2.22153.2-linux-musl-arm.tar.gz
+[aspnetcore-runtime-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/74129065-f8a6-42a4-861c-0ba2aba16765/3f67a82679aa7c57775dd77d479934f2/aspnetcore-runtime-7.0.0-preview.2.22153.2-linux-musl-arm64.tar.gz
+[aspnetcore-runtime-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/2b474ec4-78a3-4e50-a446-bd1ad933ab15/ec2d64820abe3d8351e05f0213a7ab2f/aspnetcore-runtime-7.0.0-preview.2.22153.2-linux-musl-x64.tar.gz
+[aspnetcore-runtime-linux-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/8d24d018-755a-4326-930f-b6f88e7c8851/330dfff882e637583cfde0c8cd90debf/aspnetcore-runtime-7.0.0-preview.2.22153.2-linux-x64.tar.gz
+[aspnetcore-runtime-osx-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/2a3082a5-9c7c-4152-a3a5-7b504b4dec03/39ae27a9590ffb72f2b52d3af698ba1e/aspnetcore-runtime-7.0.0-preview.2.22153.2-osx-arm64.tar.gz
+[aspnetcore-runtime-osx-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/92bec271-6ed5-4c5a-89d3-002873d147c6/735323c91eb4a14d8737c52b5ea58455/aspnetcore-runtime-7.0.0-preview.2.22153.2-osx-x64.tar.gz
+[aspnetcore-runtime-win-arm64.zip]: https://download.visualstudio.microsoft.com/download/pr/7f917f63-d7f5-404d-9e0e-ce847cd1fab0/8bbaecbace79eb896d19ca70f8505152/aspnetcore-runtime-7.0.0-preview.2.22153.2-win-arm64.zip
+[aspnetcore-runtime-win-x64.exe]: https://download.visualstudio.microsoft.com/download/pr/c6752a69-2860-495b-a1b8-ebbba3f5be19/d645486202d9357b6374ab78c52dfeed/aspnetcore-runtime-7.0.0-preview.2.22153.2-win-x64.exe
+[aspnetcore-runtime-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/48930452-e7b8-453b-a53d-c562d1e28e23/8760008e53bff5b067ad10ef3e0d0003/aspnetcore-runtime-7.0.0-preview.2.22153.2-win-x64.zip
+[aspnetcore-runtime-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/3f573ad7-e56d-4249-8c9e-1cde5f65d680/c9ea38cdbcffe09877a889276bb3730c/aspnetcore-runtime-7.0.0-preview.2.22153.2-win-x86.exe
+[aspnetcore-runtime-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/af43b709-4576-4dec-b50d-004ef8d7e193/42d821dcd80c92816c32798c0e1d59cb/aspnetcore-runtime-7.0.0-preview.2.22153.2-win-x86.zip
+[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/6b78ad20-011f-42f0-93eb-d19eb26bb573/2d38309bcc46c6f337fbab6c2837aa2d/dotnet-hosting-7.0.0-preview.2.22153.2-win.exe
+
+[//]: # ( SDK 7.0.100-preview.2.22153.17)
+[dotnet-sdk-linux-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/f7615bb0-7d72-4ff4-8501-5711298b337c/ad01d2bd02a758ac4d88c712075839b1/dotnet-sdk-7.0.100-preview.2.22153.17-linux-arm.tar.gz
+[dotnet-sdk-linux-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/464b9ad3-c0f9-4b96-8d04-8c607a5a6c17/429d60c7c172d9ec1d58515c9a94c3ca/dotnet-sdk-7.0.100-preview.2.22153.17-linux-arm64.tar.gz
+[dotnet-sdk-linux-musl-arm.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/0f066553-66be-4e7e-a623-b0de9e2425e8/b3205c742db320539c8b9007af2ebc8c/dotnet-sdk-7.0.100-preview.2.22153.17-linux-musl-arm.tar.gz
+[dotnet-sdk-linux-musl-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/bdb18180-0ea0-4eeb-b07e-51c70163cc37/607053dcff935afe7cbce6268d6290b7/dotnet-sdk-7.0.100-preview.2.22153.17-linux-musl-arm64.tar.gz
+[dotnet-sdk-linux-musl-x64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/b83e64ea-f2c4-4563-8622-ccf73ad1d365/144b78ed96b2ddb721d6927295c40a31/dotnet-sdk-7.0.100-preview.2.22153.17-linux-musl-x64.tar.gz
+[dotnet-sdk-linux-x64.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
+[dotnet-sdk-osx-arm64.pkg]: https://download.visualstudio.microsoft.com/download/pr/cd80f4c1-b605-44d1-a322-f4e4e3c01776/c494ef9e353fe544830da1b6347859bd/dotnet-sdk-7.0.100-preview.2.22153.17-osx-arm64.pkg
+[dotnet-sdk-osx-arm64.tar.gz]: https://download.visualstudio.microsoft.com/download/pr/e48daeec-7861-4193-b6eb-d3f965be6032/d203ccf2a2186096783d8deecfa63483/dotnet-sdk-7.0.100-preview.2.22153.17-osx-arm64.tar.gz
+[dotnet-sdk-osx-x64.pkg]: https://download.visualstudio.microsoft.com/download/pr/f6ec71c8-fc91-49f4-8409-f36e5b58902a/3d3ccb4dcaf0823d55ecd470854cb2c8/dotnet-sdk-7.0.100-preview.2.22153.17-osx-x64.pkg
+[dotnet-sdk-osx-x64.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
+[dotnet-sdk-win-arm64.exe]: https://download.visualstudio.microsoft.com/download/pr/18336bb7-a835-45f2-a0e1-096b9c289d0a/00894271e2577209017b985d2a8ffcca/dotnet-sdk-7.0.100-preview.2.22153.17-win-arm64.exe
+[dotnet-sdk-win-arm64.zip]: https://download.visualstudio.microsoft.com/download/pr/a30f77f6-8b77-4955-80bc-fcfe7bd99abe/41344727d9c94bb8ff86f46841d3978e/dotnet-sdk-7.0.100-preview.2.22153.17-win-arm64.zip
+[dotnet-sdk-win-x64.exe]: 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
+[dotnet-sdk-win-x64.zip]: https://download.visualstudio.microsoft.com/download/pr/d759acdb-c289-43ad-8698-4a9783d80ef8/11838a24f71dd4c359bc9a02b1e14d5f/dotnet-sdk-7.0.100-preview.2.22153.17-win-x64.zip
+[dotnet-sdk-win-x86.exe]: https://download.visualstudio.microsoft.com/download/pr/c3125850-8c7b-4516-bba7-0e3f2c855725/5a64fd988de04d746b7d332c1682de7e/dotnet-sdk-7.0.100-preview.2.22153.17-win-x86.exe
+[dotnet-sdk-win-x86.zip]: https://download.visualstudio.microsoft.com/download/pr/a844a854-92ad-4887-8fbc-6028bccf194a/10e407d4f629b046b73e8f1e6c06d294/dotnet-sdk-7.0.100-preview.2.22153.17-win-x86.zip
+
+
+
+[//]: # ( Symbols )
diff --git a/release-notes/7.0/releases.json b/release-notes/7.0/releases.json
index 021c3b9e..efbb19a8 100644
--- a/release-notes/7.0/releases.json
+++ b/release-notes/7.0/releases.json
@@ -1,13 +1,483 @@
{
"channel-version": "7.0",
- "latest-release": "7.0.0-preview.1",
- "latest-release-date": "2022-02-17",
- "latest-runtime": "7.0.0-preview.1.22076.8",
- "latest-sdk": "7.0.100-preview.1.22110.4",
+ "latest-release": "7.0.0-preview.2",
+ "latest-release-date": "2022-03-15",
+ "latest-runtime": "7.0.0-preview.2.22152.2",
+ "latest-sdk": "7.0.100-preview.2.22153.17",
"support-phase": "preview",
"lifecycle-policy": "https://aka.ms/dotnetcoresupport",
"releases": [
{
+ "release-date": "2022-03-15",
+ "release-version": "7.0.0-preview.2",
+ "security": false,
+ "cve-list": [],
+ "release-notes": "https://github.com/dotnet/core/blob/main/release-notes/7.0/preview/7.0.0-preview.2.md",
+ "runtime": {
+ "version": "7.0.0-preview.2.22152.2",
+ "version-display": "7.0.0-preview.2",
+ "vs-version": "",
+ "vs-mac-version": "",
+ "files": [
+ {
+ "name": "dotnet-runtime-linux-arm.tar.gz",
+ "rid": "linux-arm",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/d75f42ab-f32a-4c71-9198-bfeb5051fbd0/ff39bd32601fdb583a13a06e979f152b/dotnet-runtime-7.0.0-preview.2.22152.2-linux-arm.tar.gz",
+ "hash": "5c24f63816516c22930512a7d92ac2eac4a96b6f93e8987e5c77017eb0fe5dee560debb3ce9192e553510099e5b879260e3c238d7508a72eae39b8eeacc4684e"
+ },
+ {
+ "name": "dotnet-runtime-linux-arm64.tar.gz",
+ "rid": "linux-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/5154f383-6a09-41b3-bfcc-5958562e2c4b/b0fea89768d540f83ff10b8c3a556cc1/dotnet-runtime-7.0.0-preview.2.22152.2-linux-arm64.tar.gz",
+ "hash": "61eafd2a578c54797c28b466fbd9984e6c2f36b0358d36c1a1c2357aa05cd49d8a8f0f3019369f5277f4fab9c89eba48bf95c80eafcc63ef356e3b7dfb47713c"
+ },
+ {
+ "name": "dotnet-runtime-linux-musl-arm.tar.gz",
+ "rid": "linux-musl-arm",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/796d0f81-e071-4a1e-87c4-fe39a4a4aa6d/73bffc4f91e2c8e89e24aff1f8ea43f3/dotnet-runtime-7.0.0-preview.2.22152.2-linux-musl-arm.tar.gz",
+ "hash": "84a7618018fdc538e8d1d36ea0e9996beff93f5cdfcd6c2b902f3d7598723a6a25e64ad0a36c9367696f161fdf5fd93fe16e389d6416ba9811132373dc495f1f"
+ },
+ {
+ "name": "dotnet-runtime-linux-musl-arm64.tar.gz",
+ "rid": "linux-musl-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/70e2d3e3-c5a2-4943-bd6d-0671a93e1871/22777c837aa91062b909d198226b3d5a/dotnet-runtime-7.0.0-preview.2.22152.2-linux-musl-arm64.tar.gz",
+ "hash": "4e064f48b52580f0e870281c9119d5f655d133ca8ae64bf3a0f06ccc644fb8cd531236f49ee5ae8e1316660c9df253a686412c86ede9d386c838cf6131b87d23"
+ },
+ {
+ "name": "dotnet-runtime-linux-musl-x64.tar.gz",
+ "rid": "linux-musl-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/16edd568-b9a4-462c-9a5e-af010847c5c6/326f0f687857b536c3e2a45dbfd3617a/dotnet-runtime-7.0.0-preview.2.22152.2-linux-musl-x64.tar.gz",
+ "hash": "0020af8b0aa18099d3f7ea1ea9d989bbf51f66fe269625701681cb57e46f6e0c2aa61388606b8150e521142f516df50f4ee4f15dc9c73237007fa4e77552b96e"
+ },
+ {
+ "name": "dotnet-runtime-linux-x64.tar.gz",
+ "rid": "linux-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/d310a601-7f68-412a-a139-b8d6a037c9fd/b00941dc09d85a51b198117d8efdba8a/dotnet-runtime-7.0.0-preview.2.22152.2-linux-x64.tar.gz",
+ "hash": "31240cbaa948dbfa53b1b35f2971cbd0192273e866c5ea4b31646b2a3cac50aa4dbf5d6ac9a6ceff4d928b995c298e445c2f2e948102c0a1888713fb77ef4938"
+ },
+ {
+ "name": "dotnet-runtime-osx-arm64.pkg",
+ "rid": "osx-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/131656c4-1caf-4d50-abab-f2e297faa3c9/d0321edd361e67be278da7c3b7089430/dotnet-runtime-7.0.0-preview.2.22152.2-osx-arm64.pkg",
+ "hash": "a62255f67f3b7338be3d407b3704b791bbede4c49497f6f696c48f3d530aed24419b86b01b12e3c227fb1919c9853b5c5eda512ce92521641d1964e1e8a12594"
+ },
+ {
+ "name": "dotnet-runtime-osx-arm64.tar.gz",
+ "rid": "osx-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/ac1eefa5-d5a8-425a-a394-c6e2bc564e43/2c8cd64c7167cd9b444df6112ea95a2d/dotnet-runtime-7.0.0-preview.2.22152.2-osx-arm64.tar.gz",
+ "hash": "75758fdf22f1fb65d9a3022fca333750bdac4a32252fac873e9eb5836f040c7c1a1c01b191b6d31b6089a6b60a0bdf628f48173aafda700dd5751bfdcc335cbd"
+ },
+ {
+ "name": "dotnet-runtime-osx-x64.pkg",
+ "rid": "osx-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/9660c828-fb78-4fd7-85bc-3ab4e3dbb179/3c25335ff279f4e06c054e715b36f175/dotnet-runtime-7.0.0-preview.2.22152.2-osx-x64.pkg",
+ "hash": "a0a7e2599d37ea77dde76523ba18f17a3b6ae77dbc780f174a7d4f5f2b5fc20d0ae9567cbd3a3f5db9393bdef986cec30b1a065aa35cd90d34697c2b7031750d"
+ },
+ {
+ "name": "dotnet-runtime-osx-x64.tar.gz",
+ "rid": "osx-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/d1de2627-e6fc-4657-a614-59f87b3964e0/e04ea0fe25c1eb719cf1de4d6e7676f1/dotnet-runtime-7.0.0-preview.2.22152.2-osx-x64.tar.gz",
+ "hash": "74cf4b54891c61c4f0a53ba8fe5fd48def5be664feb84efe0cb0ffce5b7d76d3b3b94f24309d9aa0843b32b7c2dcae88835f8e04a52329ad0df62c587b0f800a"
+ },
+ {
+ "name": "dotnet-runtime-win-arm64.exe",
+ "rid": "win-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/a138e0a5-a99b-490e-aa3b-e343c3f39e25/d868eae31c16dae1891a8780bf989bd1/dotnet-runtime-7.0.0-preview.2.22152.2-win-arm64.exe",
+ "hash": "3aef27e905247442a9fb3a308f5204c23b76033af6bb11dbcbdd6e86528de5e01ee2e1bd6cd20d0e49d5e61c903e33125ef51121dc74fc70faac2a511a242700"
+ },
+ {
+ "name": "dotnet-runtime-win-arm64.zip",
+ "rid": "win-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/387cc604-3e60-4093-8ec7-097fc6ec83ea/c7e70f4ed32806a8f7acde94b9acc102/dotnet-runtime-7.0.0-preview.2.22152.2-win-arm64.zip",
+ "hash": "2533679c76583caf74742b704a9851657359233ae491ec389fefee7b2dd37d8b279a2a5bd2051e86eb6ad37df26019f7883db123d509a2713c2260e521141f76"
+ },
+ {
+ "name": "dotnet-runtime-win-x64.exe",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/76bb18a3-0fda-4a0d-9d2d-ce83667a2668/9534db4f3b885ef2ccdaa16d37cb3133/dotnet-runtime-7.0.0-preview.2.22152.2-win-x64.exe",
+ "hash": "8b1e4bc5c1229f02242537425b23068c22b958b74df1cc62691aabae4e5118c6f41508946c11bfa997b1cff998d200569db4158291b642b2967c790598c4a619"
+ },
+ {
+ "name": "dotnet-runtime-win-x64.zip",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/27fa0e6a-b4d1-4023-8467-d1eda2f2f8f0/a0ff83fc152ac1ca4ec59292d32baa5a/dotnet-runtime-7.0.0-preview.2.22152.2-win-x64.zip",
+ "hash": "bbd8c05cca3072664ac3921f1f96d01793dc8baadeeac826949a9b285268e0eba0951968b264368ab9a34a2922a02ff2ba6162209c30df673782413d40420a78"
+ },
+ {
+ "name": "dotnet-runtime-win-x86.exe",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/066b1423-93ca-49c1-8f23-8bfba3cf6e84/1b9584330bc342bec480156e17cd961e/dotnet-runtime-7.0.0-preview.2.22152.2-win-x86.exe",
+ "hash": "30aa930f20e48cf174b563bceaca5d23e2c6035827fdcff235c634707eaa67b99effb4a9d2d1c355274a965e4a5add0a7ebee88709497fc9e526c17b6af6f664"
+ },
+ {
+ "name": "dotnet-runtime-win-x86.zip",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/f77a2a6e-4138-401d-ad1a-7f8cd8aa6c69/e0f5a9ccc9c225e481cb27cf155e3113/dotnet-runtime-7.0.0-preview.2.22152.2-win-x86.zip",
+ "hash": "460d1b5aa9b1d0a0b0e053554d1cada1c32865435ae3de7a5e2ed9b9468021cfcadecd06eb133d07ed81c23b2c8734a01bdde1e20c7f287eb68f7fb4f1f73dc8"
+ }
+ ]
+ },
+ "sdk": {
+ "version": "7.0.100-preview.2.22153.17",
+ "version-display": "7.0.100-preview.2",
+ "runtime-version": "7.0.0-preview.2.22152.2",
+ "vs-version": "",
+ "vs-mac-version": "",
+ "vs-support": "Visual Studio 2022 (v17.2 latest preview)",
+ "vs-mac-support": "",
+ "csharp-version": "10.0",
+ "fsharp-version": "6.0",
+ "vb-version": "16.9",
+ "files": [
+ {
+ "name": "dotnet-sdk-linux-arm.tar.gz",
+ "rid": "linux-arm",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/f7615bb0-7d72-4ff4-8501-5711298b337c/ad01d2bd02a758ac4d88c712075839b1/dotnet-sdk-7.0.100-preview.2.22153.17-linux-arm.tar.gz",
+ "hash": "cc95d32002661af468d17493c96362f781402f7508e5ce6b3616086512d04ee327942215b50ab1ae10eea7d9d40e805ced15d17b00ed436d07159f8a04ac873c"
+ },
+ {
+ "name": "dotnet-sdk-linux-arm64.tar.gz",
+ "rid": "linux-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/464b9ad3-c0f9-4b96-8d04-8c607a5a6c17/429d60c7c172d9ec1d58515c9a94c3ca/dotnet-sdk-7.0.100-preview.2.22153.17-linux-arm64.tar.gz",
+ "hash": "049534f71b98e1673b8534bf88e9900e396b9c28ed155874df6ce6b8bd9d6c720f567a1dc5b95097bcf629331db14fad1cb35635459c5c9a82c737a69e99fbee"
+ },
+ {
+ "name": "dotnet-sdk-linux-musl-arm.tar.gz",
+ "rid": "linux-musl-arm",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/0f066553-66be-4e7e-a623-b0de9e2425e8/b3205c742db320539c8b9007af2ebc8c/dotnet-sdk-7.0.100-preview.2.22153.17-linux-musl-arm.tar.gz",
+ "hash": "0b043cc5b995856116fa51d294cf10474ea8ccf30bbd21f66d41423b5667dbbcab4aa1bcb2c6b3890c39d2bed6c77c2274f70f4e91524aa4874b09b8a2fd666e"
+ },
+ {
+ "name": "dotnet-sdk-linux-musl-arm64.tar.gz",
+ "rid": "linux-musl-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/bdb18180-0ea0-4eeb-b07e-51c70163cc37/607053dcff935afe7cbce6268d6290b7/dotnet-sdk-7.0.100-preview.2.22153.17-linux-musl-arm64.tar.gz",
+ "hash": "a7b2a444840ae4a52bb36a76cbcf284fa27250c98628203601ff1a523bc54e440932d8da39036bcd94114553f644b22115120975c2a496e6e27ca4062f270ed6"
+ },
+ {
+ "name": "dotnet-sdk-linux-musl-x64.tar.gz",
+ "rid": "linux-musl-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/b83e64ea-f2c4-4563-8622-ccf73ad1d365/144b78ed96b2ddb721d6927295c40a31/dotnet-sdk-7.0.100-preview.2.22153.17-linux-musl-x64.tar.gz",
+ "hash": "ff38288921b1a8ef7c48c7c31035b91004529d9c9a746485eb0a9677849430d7f795e5230033a17a72679090833a40784ab694fe749e47fddf8a79e30f0d4ef9"
+ },
+ {
+ "name": "dotnet-sdk-linux-x64.tar.gz",
+ "rid": "linux-x64",
+ "url": "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",
+ "hash": "279521b1677ed1832878a0318e928b68bb9aa6d578e0e6e69b5c5da6aa8999f0a60ec4c33d622db1c941f926cfdcdc227f413622d69ea28d5f9d6ec8681f7bc3"
+ },
+ {
+ "name": "dotnet-sdk-osx-arm64.pkg",
+ "rid": "osx-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/cd80f4c1-b605-44d1-a322-f4e4e3c01776/c494ef9e353fe544830da1b6347859bd/dotnet-sdk-7.0.100-preview.2.22153.17-osx-arm64.pkg",
+ "hash": "b17117c068e2f9d66120dc0133c3674284f71dc04622c0774c3a231e7abce4af8e0523c7d0e5e7940319457e336af10be08c2440e38573fdd51232a01e7b7677"
+ },
+ {
+ "name": "dotnet-sdk-osx-arm64.tar.gz",
+ "rid": "osx-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/e48daeec-7861-4193-b6eb-d3f965be6032/d203ccf2a2186096783d8deecfa63483/dotnet-sdk-7.0.100-preview.2.22153.17-osx-arm64.tar.gz",
+ "hash": "cb37a63721c26e250f498c6c71a68706c38c43f2f9274b822d7b2f41c5fd44eda83af4a498e627cdbc0f9e68e918266ad3fbcb1c2b75669fb27c9b9164eb2d09"
+ },
+ {
+ "name": "dotnet-sdk-osx-x64.pkg",
+ "rid": "osx-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/f6ec71c8-fc91-49f4-8409-f36e5b58902a/3d3ccb4dcaf0823d55ecd470854cb2c8/dotnet-sdk-7.0.100-preview.2.22153.17-osx-x64.pkg",
+ "hash": "5399006d9d25789cde5fb75ab974cb3d832e7c6a1d451911cb57eed8e6cdf825f35c667a733766137d4292753af804dba360100b865391d81e9988e491e4b82e"
+ },
+ {
+ "name": "dotnet-sdk-osx-x64.tar.gz",
+ "rid": "osx-x64",
+ "url": "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",
+ "hash": "0175c0ee1f30eb18d206ac834e20c9fac64eb30fd3c1c12ac0d66e89575b2a5fc5bb5820e55bc70824105ca7b36923916c69b548443ffa8fba5308806b335199"
+ },
+ {
+ "name": "dotnet-sdk-win-arm64.exe",
+ "rid": "win-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/18336bb7-a835-45f2-a0e1-096b9c289d0a/00894271e2577209017b985d2a8ffcca/dotnet-sdk-7.0.100-preview.2.22153.17-win-arm64.exe",
+ "hash": "8f6da29b7dac521a503541258259e1c393579b8f9f629e4b040e48aea30549cbfa186a068fda1563b3216099cacce2970091ef54f03f3520c67194b89ce4e051"
+ },
+ {
+ "name": "dotnet-sdk-win-arm64.zip",
+ "rid": "win-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/a30f77f6-8b77-4955-80bc-fcfe7bd99abe/41344727d9c94bb8ff86f46841d3978e/dotnet-sdk-7.0.100-preview.2.22153.17-win-arm64.zip",
+ "hash": "4c55a53d63a5f624f9a1330163d36697b343de3f8175cab1155478952ac78d2773c95109881b6f8f4ba41935d71b8c723c7171d8dafdce556709b3e28667a2d4"
+ },
+ {
+ "name": "dotnet-sdk-win-x64.exe",
+ "rid": "win-x64",
+ "url": "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",
+ "hash": "4acd6d094f801981d788277705fb89393031fe50c2bc8c4586d557f17a421403921bbba0274cb922fc4ae09c187ef606a7cca646f813240d89f7f29ac65783e6"
+ },
+ {
+ "name": "dotnet-sdk-win-x64.zip",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/d759acdb-c289-43ad-8698-4a9783d80ef8/11838a24f71dd4c359bc9a02b1e14d5f/dotnet-sdk-7.0.100-preview.2.22153.17-win-x64.zip",
+ "hash": "7e604a040f1629394a2d02cda532afdb6e13d96c0758e119b7ddbab9c53cc6ce73a4fffcbaed2228256a1dfe0b0797bceb2d9fc5b5d3a454493435ce5af9cf14"
+ },
+ {
+ "name": "dotnet-sdk-win-x86.exe",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/c3125850-8c7b-4516-bba7-0e3f2c855725/5a64fd988de04d746b7d332c1682de7e/dotnet-sdk-7.0.100-preview.2.22153.17-win-x86.exe",
+ "hash": "c785761f75166a6e069969d18d710e6cd6aeb19280f73d1ca17b0b305b33dbb27755f551ead41e750d432744bfafb6201fa71db6e1ddb807e433b7dff8e9865f"
+ },
+ {
+ "name": "dotnet-sdk-win-x86.zip",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/a844a854-92ad-4887-8fbc-6028bccf194a/10e407d4f629b046b73e8f1e6c06d294/dotnet-sdk-7.0.100-preview.2.22153.17-win-x86.zip",
+ "hash": "6a0a2dffeb4de4176c0b16318ea081ef41d9fb3f2f7a8f1b46d2b5bfe0e06bd2100e85941a54822a1f034c18ecd97b972b74dd026ce302c3ac8b2dc46fc559be"
+ }
+ ]
+ },
+ "sdks": [
+ {
+ "version": "7.0.100-preview.2.22153.17",
+ "version-display": "7.0.100-preview.2",
+ "runtime-version": "7.0.0-preview.2.22152.2",
+ "vs-version": "",
+ "vs-mac-version": "",
+ "vs-support": "Visual Studio 2022 (v17.2 latest preview)",
+ "vs-mac-support": "",
+ "csharp-version": "10.0",
+ "fsharp-version": "6.0",
+ "vb-version": "16.9",
+ "files": [
+ {
+ "name": "dotnet-sdk-linux-arm.tar.gz",
+ "rid": "linux-arm",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/f7615bb0-7d72-4ff4-8501-5711298b337c/ad01d2bd02a758ac4d88c712075839b1/dotnet-sdk-7.0.100-preview.2.22153.17-linux-arm.tar.gz",
+ "hash": "cc95d32002661af468d17493c96362f781402f7508e5ce6b3616086512d04ee327942215b50ab1ae10eea7d9d40e805ced15d17b00ed436d07159f8a04ac873c"
+ },
+ {
+ "name": "dotnet-sdk-linux-arm64.tar.gz",
+ "rid": "linux-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/464b9ad3-c0f9-4b96-8d04-8c607a5a6c17/429d60c7c172d9ec1d58515c9a94c3ca/dotnet-sdk-7.0.100-preview.2.22153.17-linux-arm64.tar.gz",
+ "hash": "049534f71b98e1673b8534bf88e9900e396b9c28ed155874df6ce6b8bd9d6c720f567a1dc5b95097bcf629331db14fad1cb35635459c5c9a82c737a69e99fbee"
+ },
+ {
+ "name": "dotnet-sdk-linux-musl-arm.tar.gz",
+ "rid": "linux-musl-arm",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/0f066553-66be-4e7e-a623-b0de9e2425e8/b3205c742db320539c8b9007af2ebc8c/dotnet-sdk-7.0.100-preview.2.22153.17-linux-musl-arm.tar.gz",
+ "hash": "0b043cc5b995856116fa51d294cf10474ea8ccf30bbd21f66d41423b5667dbbcab4aa1bcb2c6b3890c39d2bed6c77c2274f70f4e91524aa4874b09b8a2fd666e"
+ },
+ {
+ "name": "dotnet-sdk-linux-musl-arm64.tar.gz",
+ "rid": "linux-musl-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/bdb18180-0ea0-4eeb-b07e-51c70163cc37/607053dcff935afe7cbce6268d6290b7/dotnet-sdk-7.0.100-preview.2.22153.17-linux-musl-arm64.tar.gz",
+ "hash": "a7b2a444840ae4a52bb36a76cbcf284fa27250c98628203601ff1a523bc54e440932d8da39036bcd94114553f644b22115120975c2a496e6e27ca4062f270ed6"
+ },
+ {
+ "name": "dotnet-sdk-linux-musl-x64.tar.gz",
+ "rid": "linux-musl-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/b83e64ea-f2c4-4563-8622-ccf73ad1d365/144b78ed96b2ddb721d6927295c40a31/dotnet-sdk-7.0.100-preview.2.22153.17-linux-musl-x64.tar.gz",
+ "hash": "ff38288921b1a8ef7c48c7c31035b91004529d9c9a746485eb0a9677849430d7f795e5230033a17a72679090833a40784ab694fe749e47fddf8a79e30f0d4ef9"
+ },
+ {
+ "name": "dotnet-sdk-linux-x64.tar.gz",
+ "rid": "linux-x64",
+ "url": "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",
+ "hash": "279521b1677ed1832878a0318e928b68bb9aa6d578e0e6e69b5c5da6aa8999f0a60ec4c33d622db1c941f926cfdcdc227f413622d69ea28d5f9d6ec8681f7bc3"
+ },
+ {
+ "name": "dotnet-sdk-osx-arm64.pkg",
+ "rid": "osx-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/cd80f4c1-b605-44d1-a322-f4e4e3c01776/c494ef9e353fe544830da1b6347859bd/dotnet-sdk-7.0.100-preview.2.22153.17-osx-arm64.pkg",
+ "hash": "b17117c068e2f9d66120dc0133c3674284f71dc04622c0774c3a231e7abce4af8e0523c7d0e5e7940319457e336af10be08c2440e38573fdd51232a01e7b7677"
+ },
+ {
+ "name": "dotnet-sdk-osx-arm64.tar.gz",
+ "rid": "osx-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/e48daeec-7861-4193-b6eb-d3f965be6032/d203ccf2a2186096783d8deecfa63483/dotnet-sdk-7.0.100-preview.2.22153.17-osx-arm64.tar.gz",
+ "hash": "cb37a63721c26e250f498c6c71a68706c38c43f2f9274b822d7b2f41c5fd44eda83af4a498e627cdbc0f9e68e918266ad3fbcb1c2b75669fb27c9b9164eb2d09"
+ },
+ {
+ "name": "dotnet-sdk-osx-x64.pkg",
+ "rid": "osx-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/f6ec71c8-fc91-49f4-8409-f36e5b58902a/3d3ccb4dcaf0823d55ecd470854cb2c8/dotnet-sdk-7.0.100-preview.2.22153.17-osx-x64.pkg",
+ "hash": "5399006d9d25789cde5fb75ab974cb3d832e7c6a1d451911cb57eed8e6cdf825f35c667a733766137d4292753af804dba360100b865391d81e9988e491e4b82e"
+ },
+ {
+ "name": "dotnet-sdk-osx-x64.tar.gz",
+ "rid": "osx-x64",
+ "url": "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",
+ "hash": "0175c0ee1f30eb18d206ac834e20c9fac64eb30fd3c1c12ac0d66e89575b2a5fc5bb5820e55bc70824105ca7b36923916c69b548443ffa8fba5308806b335199"
+ },
+ {
+ "name": "dotnet-sdk-win-arm64.exe",
+ "rid": "win-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/18336bb7-a835-45f2-a0e1-096b9c289d0a/00894271e2577209017b985d2a8ffcca/dotnet-sdk-7.0.100-preview.2.22153.17-win-arm64.exe",
+ "hash": "8f6da29b7dac521a503541258259e1c393579b8f9f629e4b040e48aea30549cbfa186a068fda1563b3216099cacce2970091ef54f03f3520c67194b89ce4e051"
+ },
+ {
+ "name": "dotnet-sdk-win-arm64.zip",
+ "rid": "win-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/a30f77f6-8b77-4955-80bc-fcfe7bd99abe/41344727d9c94bb8ff86f46841d3978e/dotnet-sdk-7.0.100-preview.2.22153.17-win-arm64.zip",
+ "hash": "4c55a53d63a5f624f9a1330163d36697b343de3f8175cab1155478952ac78d2773c95109881b6f8f4ba41935d71b8c723c7171d8dafdce556709b3e28667a2d4"
+ },
+ {
+ "name": "dotnet-sdk-win-x64.exe",
+ "rid": "win-x64",
+ "url": "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",
+ "hash": "4acd6d094f801981d788277705fb89393031fe50c2bc8c4586d557f17a421403921bbba0274cb922fc4ae09c187ef606a7cca646f813240d89f7f29ac65783e6"
+ },
+ {
+ "name": "dotnet-sdk-win-x64.zip",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/d759acdb-c289-43ad-8698-4a9783d80ef8/11838a24f71dd4c359bc9a02b1e14d5f/dotnet-sdk-7.0.100-preview.2.22153.17-win-x64.zip",
+ "hash": "7e604a040f1629394a2d02cda532afdb6e13d96c0758e119b7ddbab9c53cc6ce73a4fffcbaed2228256a1dfe0b0797bceb2d9fc5b5d3a454493435ce5af9cf14"
+ },
+ {
+ "name": "dotnet-sdk-win-x86.exe",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/c3125850-8c7b-4516-bba7-0e3f2c855725/5a64fd988de04d746b7d332c1682de7e/dotnet-sdk-7.0.100-preview.2.22153.17-win-x86.exe",
+ "hash": "c785761f75166a6e069969d18d710e6cd6aeb19280f73d1ca17b0b305b33dbb27755f551ead41e750d432744bfafb6201fa71db6e1ddb807e433b7dff8e9865f"
+ },
+ {
+ "name": "dotnet-sdk-win-x86.zip",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/a844a854-92ad-4887-8fbc-6028bccf194a/10e407d4f629b046b73e8f1e6c06d294/dotnet-sdk-7.0.100-preview.2.22153.17-win-x86.zip",
+ "hash": "6a0a2dffeb4de4176c0b16318ea081ef41d9fb3f2f7a8f1b46d2b5bfe0e06bd2100e85941a54822a1f034c18ecd97b972b74dd026ce302c3ac8b2dc46fc559be"
+ }
+ ]
+ }
+ ],
+ "aspnetcore-runtime": {
+ "version": "7.0.0-preview.2.22153.2",
+ "version-display": "7.0.0-preview.2",
+ "version-aspnetcoremodule": [
+ "17.0.22062.0"
+ ],
+ "vs-version": "",
+ "files": [
+ {
+ "name": "aspnetcore-runtime-linux-arm.tar.gz",
+ "rid": "linux-arm",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/3f62c2be-99fb-418d-b98e-30d5d1d7e862/ea163ba205a0ac680d995e0f8d657bb7/aspnetcore-runtime-7.0.0-preview.2.22153.2-linux-arm.tar.gz",
+ "hash": "e5631113fa2531825200e7270cbff6ca4b1678eb82056cf6b31479114599b59ed2ed2c47986fefaf9e056f767e14bc5fd4b5c01373ced7f40be3ab63dd0c48aa"
+ },
+ {
+ "name": "aspnetcore-runtime-linux-arm64.tar.gz",
+ "rid": "linux-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/91aba62d-7b61-46fd-bae9-a34299a01ec4/f0597bde0eab2c832ce30eef80583d4d/aspnetcore-runtime-7.0.0-preview.2.22153.2-linux-arm64.tar.gz",
+ "hash": "884c66cc2fa5097aaed7fae6595b96a6c66f0f5e3fedc0074dee123182bb7c62f0a04d2df20a68252b4e3d35b4b82e5e3e70b35c92a7a582c1cc69eb88231d63"
+ },
+ {
+ "name": "aspnetcore-runtime-linux-musl-arm.tar.gz",
+ "rid": "linux-musl-arm",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/a67f9239-04e7-4194-8b90-3f22210dc06d/6a64962a90094707298d79b550271ff3/aspnetcore-runtime-7.0.0-preview.2.22153.2-linux-musl-arm.tar.gz",
+ "hash": "ff26e2c96e3357d37077f70eb1f03816621eda4ddb13e59930c382a0e023bed144272a53a5fc6b586e5db7f069c6f73b8d1e3d0cdf911ab7707329ca136ec7cc"
+ },
+ {
+ "name": "aspnetcore-runtime-linux-musl-arm64.tar.gz",
+ "rid": "linux-musl-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/74129065-f8a6-42a4-861c-0ba2aba16765/3f67a82679aa7c57775dd77d479934f2/aspnetcore-runtime-7.0.0-preview.2.22153.2-linux-musl-arm64.tar.gz",
+ "hash": "ac98b8025125dc23545544c2ea91a887c049cb334e5855c47c4cc76c7ca5438b895124dc20ec80df7414e4d9987105d0e3815365b85a3ea0ea108e66ad3fa458"
+ },
+ {
+ "name": "aspnetcore-runtime-linux-musl-x64.tar.gz",
+ "rid": "linux-musl-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/2b474ec4-78a3-4e50-a446-bd1ad933ab15/ec2d64820abe3d8351e05f0213a7ab2f/aspnetcore-runtime-7.0.0-preview.2.22153.2-linux-musl-x64.tar.gz",
+ "hash": "4d7e8c4d92c1c742eadfd9f830e9a3af00a5dc5e9becc2aff3364b86ce2770042899135ee08e593c907521ff3dfe860b37eceff3a6c3a753ed79358672fa9a8a"
+ },
+ {
+ "name": "aspnetcore-runtime-linux-x64.tar.gz",
+ "rid": "linux-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/8d24d018-755a-4326-930f-b6f88e7c8851/330dfff882e637583cfde0c8cd90debf/aspnetcore-runtime-7.0.0-preview.2.22153.2-linux-x64.tar.gz",
+ "hash": "b5c713de49282b383e0c69d4f02a59a34db32982a576945cbfdb327cf18076ca0a67e970a36d0cd3e9de6f895b8d0d92cf7687af94fc58ac952fd1df91e44554"
+ },
+ {
+ "name": "aspnetcore-runtime-osx-arm64.tar.gz",
+ "rid": "osx-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/2a3082a5-9c7c-4152-a3a5-7b504b4dec03/39ae27a9590ffb72f2b52d3af698ba1e/aspnetcore-runtime-7.0.0-preview.2.22153.2-osx-arm64.tar.gz",
+ "hash": "1cbf11b8776f6856cf63f0739de231674f592812d54b8588f0f42a46f28bf4136dcdf80ba1f41612b37aa24ae8f2bf23307f22967308a64cfa741475c080763b"
+ },
+ {
+ "name": "aspnetcore-runtime-osx-x64.tar.gz",
+ "rid": "osx-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/92bec271-6ed5-4c5a-89d3-002873d147c6/735323c91eb4a14d8737c52b5ea58455/aspnetcore-runtime-7.0.0-preview.2.22153.2-osx-x64.tar.gz",
+ "hash": "806fb11a03c7c59d99f55705479d8c12f007a770e092ce3070e9c9b066169edc0ae742847ba7f996f330b481fd5c03f3a3cb955be33f7485fc28f68284340f48"
+ },
+ {
+ "name": "aspnetcore-runtime-win-arm64.zip",
+ "rid": "win-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/7f917f63-d7f5-404d-9e0e-ce847cd1fab0/8bbaecbace79eb896d19ca70f8505152/aspnetcore-runtime-7.0.0-preview.2.22153.2-win-arm64.zip",
+ "hash": "d88c6507370de62e940906a87a92ad792be3ed698db9af70e409ddfcfb2993b8af1181dc944d313a95924c57ac8d3e02b1a970d69fc3ca922191fc32370de118"
+ },
+ {
+ "name": "aspnetcore-runtime-win-x64.exe",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/c6752a69-2860-495b-a1b8-ebbba3f5be19/d645486202d9357b6374ab78c52dfeed/aspnetcore-runtime-7.0.0-preview.2.22153.2-win-x64.exe",
+ "hash": "8c1148cf34ccb75bb0b37057f1ce8ae49379be5387acf50e4e7b49aeeeef519497252dfcf0b0985089f6b0e623d6f21f577662d271c1eaf2d30fd388c03cb402"
+ },
+ {
+ "name": "aspnetcore-runtime-win-x64.zip",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/48930452-e7b8-453b-a53d-c562d1e28e23/8760008e53bff5b067ad10ef3e0d0003/aspnetcore-runtime-7.0.0-preview.2.22153.2-win-x64.zip",
+ "hash": "7f720e796573e4d5c14ba3491663364b98a61eab6691c4cc19c1492a16814e1ba23d6a702fd69837b591c051c5c94db1dfeeec13adf73688daa5b2421ef8188e"
+ },
+ {
+ "name": "aspnetcore-runtime-win-x86.exe",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/3f573ad7-e56d-4249-8c9e-1cde5f65d680/c9ea38cdbcffe09877a889276bb3730c/aspnetcore-runtime-7.0.0-preview.2.22153.2-win-x86.exe",
+ "hash": "c23bed8e89e87c1c632c46b0450a44f21b0999328adfbec18c23d9f722e0eb5bda25906664462d48280eb25bde94fd3d1f5f2dfbafdd19a83e428035d9df797c"
+ },
+ {
+ "name": "aspnetcore-runtime-win-x86.zip",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/af43b709-4576-4dec-b50d-004ef8d7e193/42d821dcd80c92816c32798c0e1d59cb/aspnetcore-runtime-7.0.0-preview.2.22153.2-win-x86.zip",
+ "hash": "84e21292421201a7a5c096ed48fcb82f892009e176db2095375495d8c87c1c8b9370598a7514f857108b946624a59962847e14c88522c868e38e1fc656f33ddd"
+ },
+ {
+ "name": "dotnet-hosting-win.exe",
+ "rid": "",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/6b78ad20-011f-42f0-93eb-d19eb26bb573/2d38309bcc46c6f337fbab6c2837aa2d/dotnet-hosting-7.0.0-preview.2.22153.2-win.exe",
+ "hash": "ac4de8f001c5405261ba7ace6b6aed58d1057aee0c5ce497ab1057328edfb0f651e64bf32ea1d4d2822544aba749cab9d3a4adaed741626dbe8dcd5b7b7abc1f",
+ "akams": "https://aka.ms/dotnetcore-7-0-windowshosting"
+ }
+ ]
+ },
+ "windowsdesktop": {
+ "version": "7.0.0-preview.2.22153.5",
+ "version-display": "7.0.0-preview.2",
+ "files": [
+ {
+ "name": "windowsdesktop-runtime-win-arm64.exe",
+ "rid": "win-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/6dbbbeeb-c11f-4f32-a165-0a73a17ae41e/f011743571c716a25911d62f21800650/windowsdesktop-runtime-7.0.0-preview.2.22153.5-win-arm64.exe",
+ "hash": "6f54cb7b542f73a60ddd5b859be68b55ec2561e326b435a2264bf88011f48f7409eaa0966d54de10141e43156788a450c8bd8e8bff387d6a94fe9dd1713b23d3"
+ },
+ {
+ "name": "windowsdesktop-runtime-win-arm64.zip",
+ "rid": "win-arm64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/33697e18-1793-448a-954d-ced3dde002bd/3eef88084b2e4c8f4247c51862f84361/windowsdesktop-runtime-7.0.0-preview.2.22153.5-win-arm64.zip",
+ "hash": "977c23b44fe72a5404681208efa5a88b26ae2043242a47b658dc686eff5af33274b34b91ec6e0568586ad66f59e48e1e1aedb5c8b8dceb9ab99ccb688051c7eb"
+ },
+ {
+ "name": "windowsdesktop-runtime-win-x64.exe",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/15596c40-e6d3-4133-b04b-81fc9fbd532d/0bdd610ade324b0e67924169eeabded4/windowsdesktop-runtime-7.0.0-preview.2.22153.5-win-x64.exe",
+ "hash": "038815bae5d9133f00efaa9716f9a3409be6383f548721723f4e6dedc787efa9a1dc77b4a0eb67e13f3d578f82edae22563a5b634eb8f3691e1ed9034b3d12b1"
+ },
+ {
+ "name": "windowsdesktop-runtime-win-x64.zip",
+ "rid": "win-x64",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/6f1acefd-0fb3-409b-b4a9-c81fc92b24aa/12ed761f2257431b9b573bf3819d8d16/windowsdesktop-runtime-7.0.0-preview.2.22153.5-win-x64.zip",
+ "hash": "dd6823d1e5a476de34d9e0125937f8c394b04e896e4fb0c2d4adc16670ed6d27baf849e092df17ff02eeb7a5c4654777d2847eaa88913c9c4194bd178acae426"
+ },
+ {
+ "name": "windowsdesktop-runtime-win-x86.exe",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/0059c92c-a180-42aa-859f-b244054113ea/41293f683ae3491c01d3aa7b7dba9052/windowsdesktop-runtime-7.0.0-preview.2.22153.5-win-x86.exe",
+ "hash": "64c2b6283f6d707f7264013f212a4f946fd2c809a86fd22ea1809b49fac34aacbf497577c613cb1570b8526e8ab80fd8771f9ef0cd80457899fcfa68c9221fff"
+ },
+ {
+ "name": "windowsdesktop-runtime-win-x86.zip",
+ "rid": "win-x86",
+ "url": "https://download.visualstudio.microsoft.com/download/pr/c2890582-8f9f-46ef-afcf-27aac666e3f3/a2e9a79ed9033efd8eae58dd3333919a/windowsdesktop-runtime-7.0.0-preview.2.22153.5-win-x86.zip",
+ "hash": "4d2ba3d8fcfe2dd29f753276075dc990b49230e0d26d5587470226cdf5049ec848d4f4a65d4e5d2e51f4f3c9ff338623df0e4dbc244aa1f2c27fb96900f8b874"
+ }
+ ]
+ }
+ },
+ {
"release-date": "2022-02-17",
"release-version": "7.0.0-preview.1",
"security": false,
diff --git a/release-notes/README.md b/release-notes/README.md
index 2fa50d13..e69ccd95 100644
--- a/release-notes/README.md
+++ b/release-notes/README.md
@@ -4,14 +4,14 @@ The following [.NET releases](../releases.md) are currently supported:
| Version | Release Date | Support | Latest Patch Version | End of Support |
| :-- | :-- | :-- | :-- | :-- |
-| [.NET 7](7.0/README.md) | [November, 2022](https://devblogs.microsoft.com/dotnet/announcing-net-7-preview-1/) | [Preview][policies] | [7.0 Preview 1][7.0 Preview 1] | November, 2023 |
+| [.NET 7](7.0/README.md) | [November, 2022](https://devblogs.microsoft.com/dotnet/announcing-dotnet-7-preview-2/) | [Preview][policies] | [7.0 Preview 2][7.0 Preview 2] | November, 2023 |
| [.NET 6](6.0/README.md) | [November, 2021](https://devblogs.microsoft.com/dotnet/announcing-net-6/) | [LTS][policies] | [6.0.3][6.0.3] | November 08, 2024 |
| [.NET 5](5.0/README.md) | [November 10, 2020](https://devblogs.microsoft.com/dotnet/announcing-net-5-0/) | [Current][policies] | [5.0.15][5.0.15] | May 08, 2022 |
| [.NET Core 3.1](3.1/README.md) | [December 3, 2019](https://devblogs.microsoft.com/dotnet/announcing-net-core-3-1/) | [LTS][policies] | [3.1.23][3.1.23] | December 3, 2022 |
You can find release notes for all releases, including out-of-support releases, in the [release-notes](.) directory.
-[7.0 Preview 1]: 7.0/preview/7.0.0-preview.1.md
+[7.0 Preview 2]: 7.0/preview/7.0.0-preview.2.md
[6.0.3]: 6.0/6.0.3/6.0.3.md
[5.0.15]: 5.0/5.0.15/5.0.15.md
[3.1.23]: 3.1/3.1.23/3.1.23.md
diff --git a/release-notes/releases-index.json b/release-notes/releases-index.json
index 6f6f749f..d9b2be7b 100644
--- a/release-notes/releases-index.json
+++ b/release-notes/releases-index.json
@@ -2,11 +2,11 @@
"releases-index": [
{
"channel-version": "7.0",
- "latest-release": "7.0.0-preview.1",
- "latest-release-date": "2022-02-17",
+ "latest-release": "7.0.0-preview.2",
+ "latest-release-date": "2022-03-15",
"security": false,
- "latest-runtime": "7.0.0-preview.1.22076.8",
- "latest-sdk": "7.0.100-preview.1.22110.4",
+ "latest-runtime": "7.0.0-preview.2.22152.2",
+ "latest-sdk": "7.0.100-preview.2.22153.17",
"product": ".NET",
"support-phase": "preview",
"eol-date": null,
diff --git a/releases.md b/releases.md
index 9d13bfdc..15165405 100644
--- a/releases.md
+++ b/releases.md
@@ -10,12 +10,12 @@ The following table lists in-support .NET releases.
| Version | Release Date | Support | Latest Patch Version | End of Support |
| :-- | :-- | :-- | :-- | :-- |
-| [.NET 7](release-notes/7.0/README.md) | [November, 2022](https://devblogs.microsoft.com/dotnet/announcing-net-7-preview-1/) | [Preview][policies] | [7.0 Preview 1][7.0 Preview 1] | November, 2023 |
+| [.NET 7](release-notes/7.0/README.md) | [November, 2022](https://devblogs.microsoft.com/dotnet/announcing-dotnet-7-preview-2/) | [Preview][policies] | [7.0 Preview 2][7.0 Preview 2] | November, 2023 |
| [.NET 6](release-notes/6.0/README.md) | [November 8, 2021](https://devblogs.microsoft.com/dotnet/announcing-net-6/) | [LTS][policies] | [6.0.3][6.0.3] | November 08, 2024 |
| [.NET 5](release-notes/5.0/README.md) | [November 10, 2020](https://devblogs.microsoft.com/dotnet/announcing-net-5-0/) | [Current][policies] | [5.0.15][5.0.15] | May 08, 2022 |
| [.NET Core 3.1](release-notes/3.1/README.md) | [December 3, 2019](https://devblogs.microsoft.com/dotnet/announcing-net-core-3-1/) | [LTS][policies] | [3.1.23][3.1.23] | December 3, 2022 |
-[7.0 Preview 1]: release-notes/7.0/preview/7.0.0-preview.1.md
+[7.0 Preview 2]: release-notes/7.0/preview/7.0.0-preview.2.md
[6.0.3]: release-notes/6.0/6.0.3/6.0.3.md
[5.0.15]: release-notes/5.0/5.0.15/5.0.15.md
[3.1.23]: release-notes/3.1/3.1.23/3.1.23.md