Skip to content

Commit 391373a

Browse files
committed
release artifacts for RC1
1 parent 8d84f55 commit 391373a

File tree

12 files changed

+681
-49
lines changed

12 files changed

+681
-49
lines changed

README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,16 @@ The following [.NET releases](../releases.md) are currently supported:
44

55
| Version | Release Date | Support | Latest Patch Version | End of Support |
66
| :-- | :-- | :-- | :-- | :-- |
7-
| [.NET 7](7.0/README.md) | [November, 2022](https://devblogs.microsoft.com/dotnet/announcing-dotnet-7-preview-7/) | [Preview][policies] | [7.0 Preview 7][7.0 Preview 7] | May 14, 2024 |
7+
| [.NET 7](7.0/README.md) | [November, 2022](https://devblogs.microsoft.com/dotnet/announcing-dotnet-7-rc-1/) | [Preview][policies] | [7.0 RC 1][7.0 RC 1] | May 14, 2024 |
88
| [.NET 6](6.0/README.md) | [November, 2021](https://devblogs.microsoft.com/dotnet/announcing-net-6/) | [LTS][policies] | [6.0.9][6.0.9] | November 12, 2024 |
99
| [.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.29][3.1.29] | December 13, 2022 |
1010

1111
You can find release notes for all releases, including out-of-support releases, in the [release-notes](.) directory.
1212

13-
14-
[7.0 Preview 7]: release-notes/7.0/preview/7.0.0-preview.7.md
13+
[7.0 RC 1]: release-notes/7.0/preview/7.0.0-rc.1.md
1514
[6.0.9]: release-notes/6.0/6.0.9/6.0.9.md
1615
[3.1.29]: release-notes/3.1/3.1.29/3.1.29.md
1716

18-
19-
2017
## Release Information
2118

2219
* [Download .NET](https://dotnet.microsoft.com/download/dotnet)

release-notes/7.0/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
| Date | Release |
1515
| :-- | :-- |
16+
| 2022/09/14 | [7.0.0 RC 1](https://github.com/dotnet/core/blob/main/release-notes/7.0/preview/7.0.0-rc.1.md) |
1617
| 2022/08/09 | [7.0.0 Preview 7](https://github.com/dotnet/core/blob/main/release-notes/7.0/preview/7.0.0-preview.7.md) |
1718
| 2022/07/12 | [7.0.0 Preview 6](https://github.com/dotnet/core/blob/main/release-notes/7.0/preview/7.0.0-preview.6.md) |
1819
| 2022/06/14 | [7.0.0 Preview 5](https://github.com/dotnet/core/blob/main/release-notes/7.0/preview/7.0.0-preview.5.md) |

release-notes/7.0/install-linux.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,14 @@ You can install .NET with a binary archive. This option is required if you want
6363
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.
6464

6565
```bash
66-
~# curl -Lo dotnet.tar.gz https://download.visualstudio.microsoft.com/download/pr/aabf15d3-f201-4a6c-9a7e-def050d054af/0a8eba2d8abcf1c28605744f3a48252f/dotnet-sdk-7.0.100-preview.7.22377.5-linux-x64.tar.gz
66+
~# curl -Lo dotnet.tar.gz https://download.visualstudio.microsoft.com/download/pr/bf594dbb-5ec8-486b-8395-95058e719e1c/42e8bc351654ed4c3ccaed58ea9180a1/dotnet-sdk-7.0.100-rc.1.22431.12-linux-x64.tar.gz
6767
~# mkdir dotnet
6868
~# tar -C dotnet -xf dotnet.tar.gz
6969
~# rm dotnet.tar.gz
7070
~# export DOTNET_ROOT=~/dotnet
7171
~# export PATH=$PATH:~/dotnet
7272
~# dotnet --version
73-
7.0.100-preview.7.22377.5
73+
7.0.100-rc.1.22431.12
7474
```
7575

7676
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.

release-notes/7.0/install-macos.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,14 @@ You can install .NET with a binary archive. This option is required if you want
3434
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.
3535

3636
```bash
37-
~# curl -Lo dotnet.tar.gz https://download.visualstudio.microsoft.com/download/pr/c4688e7c-6076-4e7c-bc8d-99ff138f91ce/059f21d41a3e06aeba8ef02d465887ab/dotnet-sdk-7.0.100-preview.7.22377.5-osx-x64.pkg
37+
~# curl -Lo dotnet.tar.gz https://download.visualstudio.microsoft.com/download/pr/dae368f5-c03c-48b6-a7de-6dc423c3a5b7/180e601942c810f45f87fc75be783fbc/dotnet-sdk-7.0.100-rc.1.22431.12-osx-x64.pkg
3838
~# mkdir dotnet
3939
~# tar -C dotnet -xf dotnet.tar.gz
4040
~# rm dotnet.tar.gz
4141
~# export DOTNET_ROOT=~/dotnet
4242
~# export PATH=$PATH:~/dotnet
4343
~# dotnet --version
44-
7.0.100-preview.7.22377.5
44+
7.0.100-rc.1.22431.12
4545
```
4646

4747
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.

release-notes/7.0/install-windows.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ You can install .NET with a binary archive. This option is required if you want
4141
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.
4242

4343
```console
44-
C:\>curl -Lo dotnet.zip https://download.visualstudio.microsoft.com/download/pr/de09adf7-98ac-4007-8f18-a6f002e4f512/a84f209bc2257378eef88b7f7a9877c3/dotnet-sdk-7.0.100-preview.7.22377.5-win-x64.exe
44+
C:\>curl -Lo dotnet.zip https://download.visualstudio.microsoft.com/download/pr/87a58b01-55e1-4a0b-80bd-51a12d403bd6/f88b8b7908aab1a3876a686ce984acf8/dotnet-sdk-7.0.100-rc.1.22431.12-win-x64.exe
4545
C:\>tar -C dotnet -xf dotnet.zip
4646
C:\>del dotnet.zip
4747
C:\>set DOTNET_ROOT=C:\dotnet
4848
C:\>set PATH=%PATH%;C:\dotnet
4949
C:\>dotnet --version
50-
7.0.100-preview.7.22377.5
50+
7.0.100-rc.1.22431.12
5151
```
5252

5353
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.

release-notes/7.0/install.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -34,32 +34,32 @@ You can determine what is installed on your machine (assuming .NET is installed)
3434
```console
3535
C:\>dotnet --info
3636
.NET SDK (reflecting any global.json):
37-
Version: 7.0.100-preview.7.22377.5
38-
Commit: 1a9103db2d
37+
Version: 7.0.100-rc.1.22431.12
38+
Commit: f1cf61e1c0
3939

4040
Runtime Environment:
41-
OS Name: Windows
42-
OS Version: 10.0.17763
43-
OS Platform: Windows
44-
RID: win10-x64
45-
Base Path: C:\Program Files\dotnet\sdk\7.0.100-preview.7.22377.5\
41+
OS Name: Mac OS X
42+
OS Version: 12.5
43+
OS Platform: Darwin
44+
RID: osx.12-x64
45+
Base Path: /usr/local/share/dotnet/x64/sdk/7.0.100-rc.1.22431.12/
4646

47-
Host (useful for support):
48-
Version: 7.0.100-preview.7.22377.5
49-
Commit: 3eaf1f316b
47+
Host:
48+
Version: 7.0.0-rc.1.22426.10
49+
Architecture: x64
50+
Commit: 06aceb7015
5051

5152
.NET SDKs installed:
52-
7.0.100-preview.7.22377.5 [C:\Program Files\dotnet\sdk]
53+
7.0.100-rc.1.22431.12 [/usr/local/share/dotnet/x64/sdk]
5354

5455
.NET runtimes installed:
55-
Microsoft.AspNetCore.App 7.0.0-preview.5.22301.12 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
56-
Microsoft.NETCore.App 7.0.100-preview.7.22377.5 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
57-
Microsoft.WindowsDesktop.App 7.0.0-preview.5.22302.5 [C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App]
56+
Microsoft.AspNetCore.App 7.0.0-rc.1.22427.2 [/usr/local/share/dotnet/x64/shared/Microsoft.AspNetCore.App]
57+
Microsoft.NETCore.App 7.0.0-rc.1.22426.10 [/usr/local/share/dotnet/x64/shared/Microsoft.NETCore.App]
5858
```
5959

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

6262
```console
6363
C:\>dotnet --version
64-
7.0.100-preview.7.22377.5
64+
7.0.100-rc.1.22431.12
6565
```

0 commit comments

Comments
 (0)