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:
authorMaira Wenzel <mairaw@microsoft.com>2021-06-09 01:12:18 +0300
committerMaira Wenzel <mairaw@microsoft.com>2021-06-09 01:12:18 +0300
commit545504e2298e4340214c55100668c7ee9011452b (patch)
tree18e069dd6b80b035502d5770bd2be269e570594f /Documentation
parentfb377837d548d6fd2cc1f5c412fba1d4c1cbe778 (diff)
Replace master with main
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/build-and-install-rhel6-prerequisites.md18
-rw-r--r--Documentation/diagnostics/portable_pdb.md2
-rw-r--r--Documentation/diagnostics/source_link.md2
-rw-r--r--Documentation/microsoft-team.md2
4 files changed, 12 insertions, 12 deletions
diff --git a/Documentation/build-and-install-rhel6-prerequisites.md b/Documentation/build-and-install-rhel6-prerequisites.md
index 08f2fe8f..efa7dbd3 100644
--- a/Documentation/build-and-install-rhel6-prerequisites.md
+++ b/Documentation/build-and-install-rhel6-prerequisites.md
@@ -1,8 +1,8 @@
# How to use .NET Core on RHEL 6 / CentOS 6
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.
## Required packages
-.NET Core requires the following packages to be installed on RHEL 6:
-* epel-release
+.NET Core requires the following packages to be installed on RHEL 6:
+* epel-release
* libunwind
* openssl
* libnghttp2
@@ -22,7 +22,7 @@ This document describes the prerequisites required to run .NET Core applications
}
}
```
-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)
+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)
## Getting the libraries that are not available as packages.
### ICU
@@ -35,13 +35,13 @@ First install the prerequisites:
```sh
yum install -y \
wget \
- epel-release
+ epel-release
yum install -y \
openssl-devel \
libnghttp2-devel \
libidn-devel \
- gcc
+ gcc
```
Now untar the source code
```sh
@@ -83,11 +83,11 @@ make install
```
Now pack the compiled CURL:
```sh
-cd install
+cd install
tar -czf curl-7_45_0-RHEL6-x64.tgz *
```
## Making the libraries available for a .NET Core application
-There are several ways to do this. The following paragraphs describe them.
+There are several ways to do this. The following paragraphs describe them.
### Install the libraries into /usr/local
First untar the .tgz files as follows:
```sh
@@ -109,7 +109,7 @@ tar -xf /your/path/to/icu4c-57_1-RHEL6-x64.tgz --strip-components=3 usr/local/li
### For the app developers – pack the libraries with your application
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.
## Troubleshooting
-**Q1:** I try to run a .NET Core application on RHEL 6 / CentOS 6 and I get the following exception:
+**Q1:** I try to run a .NET Core application on RHEL 6 / CentOS 6 and I get the following exception:
```
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.
@@ -128,7 +128,7 @@ FailFast: Couldn't find a valid ICU package installed on the system. Set the con
Aborted (core dumped)
```
**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.
-
+
**Q2:** I try to run a .NET Core application on RHEL 6 / CentOS 6 and I get the exception similar to the following one:
```
diff --git a/Documentation/diagnostics/portable_pdb.md b/Documentation/diagnostics/portable_pdb.md
index 2cdc5a2e..becb7682 100644
--- a/Documentation/diagnostics/portable_pdb.md
+++ b/Documentation/diagnostics/portable_pdb.md
@@ -9,7 +9,7 @@ The Windows PDB format has been around a long time now (~25 years), and it evolv
## Why a new format? ##
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:
-* 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).
+* 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).
* At the time the effort was begun there wasn't a cross-platform library that could read or write the original windows PDB format.
* 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.
diff --git a/Documentation/diagnostics/source_link.md b/Documentation/diagnostics/source_link.md
index de81b39f..fe83ada4 100644
--- a/Documentation/diagnostics/source_link.md
+++ b/Documentation/diagnostics/source_link.md
@@ -1 +1 @@
-This document has moved to https://github.com/dotnet/designs/blob/master/accepted/2020/diagnostics/source-link.md
+This document has moved to https://github.com/dotnet/designs/blob/main/accepted/2020/diagnostics/source-link.md
diff --git a/Documentation/microsoft-team.md b/Documentation/microsoft-team.md
index e92ad606..cfab31f8 100644
--- a/Documentation/microsoft-team.md
+++ b/Documentation/microsoft-team.md
@@ -91,5 +91,5 @@ Service accounts should also be linked. For more details, see [Service accounts
## Guidelines
-* [Contributing to .NET Core](https://github.com/dotnet/runtime/blob/master/CONTRIBUTING.md)
+* [Contributing to .NET Core](https://github.com/dotnet/runtime/blob/main/CONTRIBUTING.md)
* [What you can expect from Maintainers](https://github.com/dotnet/core/blob/main/Documentation/contributing/maintainers.md)