Skip to content

Commit 545504e

Browse files
committed
Replace master with main
1 parent fb37783 commit 545504e

File tree

80 files changed

+126
-133
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+126
-133
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contributing
22

3-
See [Contributing](https://github.com/dotnet/coreclr/blob/master/Documentation/project-docs/contributing.md) for information about coding styles, source structure, making pull requests, and more.
3+
See [Contributing](https://github.com/dotnet/runtime/blob/main/CONTRIBUTING.md) for information about coding styles, source structure, making pull requests, and more.
44

55
# Repos
66

Documentation/build-and-install-rhel6-prerequisites.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# How to use .NET Core on RHEL 6 / CentOS 6
22
This document describes the prerequisites required to run .NET Core applications on RHEL / CentOS 6. Since this version is quite old, there are two runtime libraries that are not available as standard installation packages in versions that .NET Core can use, so they need to be obtained in different ways described in the sections below.
33
## Required packages
4-
.NET Core requires the following packages to be installed on RHEL 6:
5-
* epel-release
4+
.NET Core requires the following packages to be installed on RHEL 6:
5+
* epel-release
66
* libunwind
77
* openssl
88
* libnghttp2
@@ -22,7 +22,7 @@ This document describes the prerequisites required to run .NET Core applications
2222
}
2323
}
2424
```
25-
For more information about enabling or disabling the Globalization, you may refer to the [Globalization Invariant Mode Doc](https://github.com/dotnet/corefx/blob/master/Documentation/architecture/globalization-invariant-mode.md)
25+
For more information about enabling or disabling the Globalization, you may refer to the [Globalization Invariant Mode Doc](https://github.com/dotnet/runtime/blob/main/docs/design/features/globalization-invariant-mode.md)
2626

2727
## Getting the libraries that are not available as packages.
2828
### ICU
@@ -35,13 +35,13 @@ First install the prerequisites:
3535
```sh
3636
yum install -y \
3737
wget \
38-
epel-release
38+
epel-release
3939

4040
yum install -y \
4141
openssl-devel \
4242
libnghttp2-devel \
4343
libidn-devel \
44-
gcc
44+
gcc
4545
```
4646
Now untar the source code
4747
```sh
@@ -83,11 +83,11 @@ make install
8383
```
8484
Now pack the compiled CURL:
8585
```sh
86-
cd install
86+
cd install
8787
tar -czf curl-7_45_0-RHEL6-x64.tgz *
8888
```
8989
## Making the libraries available for a .NET Core application
90-
There are several ways to do this. The following paragraphs describe them.
90+
There are several ways to do this. The following paragraphs describe them.
9191
### Install the libraries into /usr/local
9292
First untar the .tgz files as follows:
9393
```sh
@@ -109,7 +109,7 @@ tar -xf /your/path/to/icu4c-57_1-RHEL6-x64.tgz --strip-components=3 usr/local/li
109109
### For the app developers – pack the libraries with your application
110110
The steps are the same as for the previous option, but they are done by the app developer. The app is then packaged including the libraries.
111111
## Troubleshooting
112-
**Q1:** I try to run a .NET Core application on RHEL 6 / CentOS 6 and I get the following exception:
112+
**Q1:** I try to run a .NET Core application on RHEL 6 / CentOS 6 and I get the following exception:
113113
```
114114
FailFast: Couldn't find a valid ICU package installed on the system. Set the configuration flag System.Globalization.Invariant to true if you want to run with no globalization support.
115115
@@ -128,7 +128,7 @@ FailFast: Couldn't find a valid ICU package installed on the system. Set the con
128128
Aborted (core dumped)
129129
```
130130
**A1:** The ICU libraries were not extracted from `icu4c-57_1-RHEL6-x64.tgz` to the right place, or `LD_LIBRARY_PATH` was not set to `/usr/local/lib`. See the [Making the libraries available for a .NET Core application](#making-the-libraries-available-for-a-net-core-application) section.
131-
131+
132132

133133
**Q2:** I try to run a .NET Core application on RHEL 6 / CentOS 6 and I get the exception similar to the following one:
134134
```

Documentation/diagnostics/portable_pdb.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The Windows PDB format has been around a long time now (~25 years), and it evolv
99
## Why a new format? ##
1010
While the Windows PDB format has worked okay over the years, with .NET Core the [Roslyn](https://github.com/dotnet/roslyn/wiki/Roslyn%20Overview) team decided it was time to go back to the drawing board and come up with a new format. A few of the reasons:
1111

12-
* The Windows PDB format is complex, and not well documented. This complexity is important for some of the native code scenarios that the format was designed for, but it is unnecessary for the .NET scenarios. The portable format is [open source](https://github.com/dotnet/symreader-portable) and [documented](https://github.com/dotnet/runtime/blob/master/docs/design/specs/PortablePdb-Metadata.md).
12+
* The Windows PDB format is complex, and not well documented. This complexity is important for some of the native code scenarios that the format was designed for, but it is unnecessary for the .NET scenarios. The portable format is [open source](https://github.com/dotnet/symreader-portable) and [documented](https://github.com/dotnet/runtime/blob/main/docs/design/specs/PortablePdb-Metadata.md).
1313
* At the time the effort was begun there wasn't a cross-platform library that could read or write the original windows PDB format.
1414
* The Windows PDB format is not a compact representation for managed code. Significant size reductions can be obtained with a new format without losing any information.
1515

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
This document has moved to https://github.com/dotnet/designs/blob/master/accepted/2020/diagnostics/source-link.md
1+
This document has moved to https://github.com/dotnet/designs/blob/main/accepted/2020/diagnostics/source-link.md

Documentation/microsoft-team.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,5 +91,5 @@ Service accounts should also be linked. For more details, see [Service accounts
9191

9292
## Guidelines
9393

94-
* [Contributing to .NET Core](https://github.com/dotnet/runtime/blob/master/CONTRIBUTING.md)
94+
* [Contributing to .NET Core](https://github.com/dotnet/runtime/blob/main/CONTRIBUTING.md)
9595
* [What you can expect from Maintainers](https://github.com/dotnet/core/blob/main/Documentation/contributing/maintainers.md)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The latest major release is [.NET 5.0](release-notes/5.0/README.md). The latest
2828

2929
## How to Engage, Contribute and Provide Feedback
3030

31-
The .NET Core team encourages [contributions](https://github.com/dotnet/runtime/blob/master/CONTRIBUTING.md), both issues and PRs. The first step is finding the [.NET Core repository](Documentation/core-repos.md) that you want to contribute to.
31+
The .NET Core team encourages [contributions](https://github.com/dotnet/runtime/blob/main/CONTRIBUTING.md), both issues and PRs. The first step is finding the [.NET Core repository](Documentation/core-repos.md) that you want to contribute to.
3232

3333
Check the [product roadmap](https://aka.ms/dotnet-product-roadmap) to see what the team is focusing on.
3434

daily-builds.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ Preview branches are for new versions of .NET that have not yet been released an
1010

1111
|Component|*.NET 6.0*
1212
|:------:|:------:|
13-
|SDK|[.NET SDK 6.0.xxx](https://github.com/dotnet/installer/blob/master/README.md#installers-and-binaries)
14-
|ASP.NET Core|[ASP.NET Core 6.0](https://github.com/aspnet/AspNetCore/blob/master/docs/DailyBuilds.md)
13+
|SDK|[.NET SDK 6.0.xxx](https://github.com/dotnet/installer/blob/main/README.md#installers-and-binaries)
14+
|ASP.NET Core|[ASP.NET Core 6.0](https://github.com/dotnet/aspnetcore/blob/main/docs/DailyBuilds.md)
1515
|Runtime|[.NET Runtime 6.0](https://github.com/dotnet/installer/blob/master/README.md#daily-builds)
1616

1717
## Servicing Releases
@@ -20,6 +20,6 @@ Servicing branches are for new patch versions of .NET that have not yet been rel
2020

2121
|Component|*.NET 5.0*|*.NET Core 3.1*|*.NET Core 2.1*|
2222
|:------:|:------:|:------:|:------:|
23-
|SDK|[.NET SDK 5.0.xxx](https://github.com/dotnet/installer/blob/master/README.md#installers-and-binaries)|[.NET Core SDK 3.1.xxx](https://github.com/dotnet/core-sdk/blob/master/README.md#installers-and-binaries)|[.NET Core SDK 2.1.xxx](https://github.com/dotnet/cli/blob/release/2.1/README.md#installers-and-binaries)|
24-
|ASP.NET Core|[ASP.NET Core 5.0](https://github.com/aspnet/AspNetCore/blob/master/docs/DailyBuilds.md)|[ASP.NET Core 3.1](https://github.com/aspnet/AspNetCore/blob/master/docs/DailyBuilds.md)|[ASP.NET Core 2.1](https://github.com/aspnet/AspNetCore/blob/master/docs/DailyBuilds.md)|
23+
|SDK|[.NET SDK 5.0.xxx](https://github.com/dotnet/installer/blob/main/README.md#installers-and-binaries)|[.NET Core SDK 3.1.xxx](https://github.com/dotnet/core-sdk/blob/main/README.md#installers-and-binaries)|[.NET Core SDK 2.1.xxx](https://github.com/dotnet/cli/blob/release/2.1/README.md#installers-and-binaries)|
24+
|ASP.NET Core|[ASP.NET Core 5.0](https://github.com/dotnet/aspnetcore/blob/main/docs/DailyBuilds.md)|[ASP.NET Core 3.1](https://github.com/dotnet/aspnetcore/blob/main/docs/DailyBuilds.md)|[ASP.NET Core 2.1](https://github.com/dotnet/aspnetcore/blob/main/docs/DailyBuilds.md)|
2525
|Runtime|[.NET Core Runtime 5.0](https://github.com/dotnet/installer/blob/master/README.md#daily-builds)|[.NET Core Runtime 3.1](https://github.com/dotnet/core-setup/blob/master/README.md#daily-builds)|[.NET Core Runtime 2.1](https://github.com/dotnet/core-setup/blob/master/README.md#daily-builds)|

product-roadmap/current.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ Items in each section include the following icons:
115115

116116
- ![Completed](media/status-completed.png "Completed icon") Multi Language support for Jupyter Notebooks (C#, F#, PowerShell)[Post](https://devblogs.microsoft.com/dotnet/net-interactive-is-here-net-notebooks-preview-2/)
117117
- ![Completed](media/status-completed.png "Completed icon") [.NET Notebooks support - Available in VS Code Insiders.](https://marketplace.visualstudio.com/items?itemName=ms-dotnettools.dotnet-interactive-vscode)
118-
- ![In Progress](media/status-in-progress.png "In Progress icon") VS Code
118+
- ![In Progress](media/status-in-progress.png "In Progress icon") VS Code
119119
- ![In Progress](media/status-in-progress.png "In Progress icon") Adding SQL to .NET Interactive
120120
- ![In Progress](media/status-in-progress.png "In Progress icon") Improve Productivity
121121
- ![In Progress](media/status-in-progress.png "In Progress icon") .NET Interactive for makers
@@ -129,7 +129,7 @@ Please see the following links to view work items and themes across:
129129

130130
## Languages
131131

132-
[Language Feature Status](https://github.com/dotnet/roslyn/blob/master/docs/Language%20Feature%20Status.md)
132+
[Language Feature Status](https://github.com/dotnet/roslyn/blob/main/docs/Language%20Feature%20Status.md)
133133

134134
### C# 9
135135

@@ -147,9 +147,9 @@ Please see the following links to view work items and themes across:
147147
- ![Completed](media/status-completed.png "Completed icon") [Target-typed conditional](https://github.com/dotnet/csharplang/issues/2460)
148148
- ![In Progress](media/status-in-progress.png "In Progress icon") [Covariant](https://github.com/dotnet/csharplang/issues/49) [Returns](https://github.com/dotnet/csharplang/issues/2844)
149149
- ![Completed](media/status-completed.png "Completed icon") [Extension GetEnumerator](https://github.com/dotnet/csharplang/issues/3194)
150-
- ![Completed](media/status-completed.png "Completed icon") [Module initializers](https://github.com/dotnet/csharplang/blob/master/proposals/csharp-9.0/module-initializers.md)
151-
- ![Completed](media/status-completed.png "Completed icon") [Extending Partial](https://github.com/dotnet/csharplang/blob/master/proposals/csharp-9.0/extending-partial-methods.md)
152-
- ![Completed](media/status-completed.png "Completed icon") [Top-level statements](https://github.com/dotnet/csharplang/blob/master/proposals/csharp-9.0/top-level-statements.md)
150+
- ![Completed](media/status-completed.png "Completed icon") [Module initializers](https://github.com/dotnet/csharplang/blob/main/proposals/csharp-9.0/module-initializers.md)
151+
- ![Completed](media/status-completed.png "Completed icon") [Extending Partial](https://github.com/dotnet/csharplang/blob/main/proposals/csharp-9.0/extending-partial-methods.md)
152+
- ![Completed](media/status-completed.png "Completed icon") [Top-level statements](https://github.com/dotnet/csharplang/blob/main/proposals/csharp-9.0/top-level-statements.md)
153153

154154
### C# Next
155155

@@ -185,7 +185,7 @@ Please see the following links to view work items and themes across:
185185
## CLI/SDK and MSBuild
186186

187187

188-
- ![Completed](media/status-completed.png "Completed icon") [Changes to Target Framework Moniker - TFM](https://github.com/dotnet/designs/blob/master/accepted/2020/net5/net5.md)
188+
- ![Completed](media/status-completed.png "Completed icon") [Changes to Target Framework Moniker - TFM](https://github.com/dotnet/designs/blob/main/accepted/2020/net5/net5.md)
189189
- ![In Planning](media/status-in-planning.png "In Planning icon") Xamarin runs on .NET and via the CLI
190190
- ![In Progress](media/status-in-progress.png "In Progress icon") [Optional Workload infrastructure](https://github.com/dotnet/designs/blob/107b50feec105b7c2b67b37acb322054e2255df5/accepted/2020/workloads/workloads.md)
191191
- ![In Planning](media/status-in-planning.png "In Planning icon") Acquisition improvements
@@ -195,13 +195,13 @@ Please see the following links to view work items and themes across:
195195
- ![Completed](media/status-completed.png "Completed icon") [Solution filter support in MSBuild](https://github.com/dotnet/msbuild/issues/4097)
196196
- ![Completed](media/status-completed.png "Completed icon") [Low priority builds for MSBuild](https://github.com/dotnet/msbuild/pull/4162)
197197
- ![In Progress](media/status-in-progress.png "In Progress icon") [Resolve Assembly References (RAR) pre-built cache](https://github.com/dotnet/msbuild/issues/5247)
198-
- ![In Progress](media/status-in-progress.png "In Progress icon") [Share RAR cache between projects](https://github.com/dotnet/msbuild/blob/master/documentation/specs/rar-as-service.md)
198+
- ![In Progress](media/status-in-progress.png "In Progress icon") [Share RAR cache between projects](https://github.com/dotnet/msbuild/blob/main/documentation/specs/rar-as-service.md)
199199

200200
## Desktop
201201

202202
### WPF
203203

204-
[Details](https://github.com/dotnet/wpf/blob/master/roadmap.md)
204+
[Details](https://github.com/dotnet/wpf/blob/main/roadmap.md)
205205

206206
- ![Completed](media/status-completed.png "Completed icon") WPF Integration with .NET 5
207207
- ![In Progress](media/status-in-progress.png "In Progress icon") Accessibility updates on app sample bugs

release-notes/2.0/2.0.0-preview2-known-issues.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ When referencing a NETStandard2.0 library from a .NETFramework application you m
1818

1919
## .NET Core 2.0 and Visual Studio 2017 15.3 Preview
2020

21-
[https://github.com/aspnet/Tooling/blob/master/known-issues-vs2017-preview.md](https://github.com/aspnet/Tooling/blob/master/known-issues-vs2017-preview.md)
21+
<https://github.com/aspnet/Tooling/blob/master/known-issues-vs2017-preview.md>
2222

2323
## Preview 1 issues which have been resolved
2424

2525
### Running 1.0 first run experience after installing 2.0 CLI
2626

27-
[https://github.com/dotnet/cli/issues/6550](https://github.com/dotnet/cli/issues/6550)
27+
<https://github.com/dotnet/cli/issues/6550>
2828

2929
This fails because the 1.0 first run shells out two dotnet commands to do dotnet new and dotnet restore. Because this is a simple shell out, the 2.0 CLI ends up being picked up to execute the commands. However, in the 1.0 CLI, we invoke dotnet new passing –f netcoreapp1.0 and netcoreapp1.1 and the 2.0 CLI no longer carries these templates, which causes the command and the whole first run to fail.
3030

release-notes/2.1/2.1.23/2.1.23-install-instructions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ See the [Release Notes](https://github.com/dotnet/core/blob/main/release-notes/2
1010

1111
## Docker
1212

13-
The [.NET Core 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/master/samples/README.md) show various ways to use .NET and Docker together.
13+
The [.NET Core 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.
1414

1515
## Installing .NET Core on Linux
1616

release-notes/2.1/2.1.23/2.1.23.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Note: This is not a security release hence this update won't be immediately avai
3838

3939
## Docker Images
4040

41-
The [.NET Core 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/master/samples/README.md) show various ways to use .NET and Docker together.
41+
The [.NET Core 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.
4242

4343
The following repos have been updated:
4444

release-notes/2.1/2.1.23/2.1.616-download.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ This update for .NET Core 2.1 includes multiple SDK builds. If you are a Visual
3434

3535
## Docker
3636

37-
The [.NET Core 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/master/samples/README.md) show various ways to use .NET and Docker together.
37+
The [.NET Core 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.
3838

3939
## Installing .NET Core on Linux
4040

release-notes/2.1/2.1.23/2.1.811-download.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ This update for .NET Core 2.1 includes multiple SDK builds. If you are a Visual
3535

3636
## Docker
3737

38-
The [.NET Core 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/master/samples/README.md) show various ways to use .NET and Docker together.
38+
The [.NET Core 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.
3939

4040
## Installing .NET Core on Linux
4141

release-notes/2.1/2.1.24/2.1.24-install-instructions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ See the [Release Notes](https://github.com/dotnet/core/blob/main/release-notes/2
1010

1111
## Docker
1212

13-
The [.NET Core 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/master/samples/README.md) show various ways to use .NET and Docker together.
13+
The [.NET Core 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.
1414

1515
## Installing .NET Core on Linux
1616

release-notes/2.1/2.1.24/2.1.24.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Visit [.NET Documentation](https://docs.microsoft.com/dotnet/core/) to learn abo
3030

3131
## Docker Images
3232

33-
The [.NET Core 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/master/samples/README.md) show various ways to use .NET and Docker together.
33+
The [.NET Core 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.
3434

3535
The following repos have been updated:
3636

release-notes/2.1/2.1.24/2.1.617-download.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ This update for .NET Core 2.1 includes multiple SDK builds. If you are a Visual
3434

3535
## Docker
3636

37-
The [.NET Core 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/master/samples/README.md) show various ways to use .NET and Docker together.
37+
The [.NET Core 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.
3838

3939
## Installing .NET Core on Linux
4040

release-notes/2.1/2.1.24/2.1.812-download.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ This update for .NET Core 2.1 includes multiple SDK builds. If you are a Visual
3535

3636
## Docker
3737

38-
The [.NET Core 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/master/samples/README.md) show various ways to use .NET and Docker together.
38+
The [.NET Core 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.
3939

4040
## Installing .NET Core on Linux
4141

0 commit comments

Comments
 (0)