You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CONTRIBUTING.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Contributing
2
2
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.
Copy file name to clipboardexpand all lines: Documentation/build-and-install-rhel6-prerequisites.md
+9-9
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
# How to use .NET Core on RHEL 6 / CentOS 6
2
2
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.
3
3
## 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
6
6
* libunwind
7
7
* openssl
8
8
* libnghttp2
@@ -22,7 +22,7 @@ This document describes the prerequisites required to run .NET Core applications
22
22
}
23
23
}
24
24
```
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)
26
26
27
27
## Getting the libraries that are not available as packages.
28
28
### ICU
@@ -35,13 +35,13 @@ First install the prerequisites:
35
35
```sh
36
36
yum install -y \
37
37
wget \
38
-
epel-release
38
+
epel-release
39
39
40
40
yum install -y \
41
41
openssl-devel \
42
42
libnghttp2-devel \
43
43
libidn-devel \
44
-
gcc
44
+
gcc
45
45
```
46
46
Now untar the source code
47
47
```sh
@@ -83,11 +83,11 @@ make install
83
83
```
84
84
Now pack the compiled CURL:
85
85
```sh
86
-
cd install
86
+
cd install
87
87
tar -czf curl-7_45_0-RHEL6-x64.tgz *
88
88
```
89
89
## 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.
91
91
### Install the libraries into /usr/local
92
92
First untar the .tgz files as follows:
93
93
```sh
@@ -109,7 +109,7 @@ tar -xf /your/path/to/icu4c-57_1-RHEL6-x64.tgz --strip-components=3 usr/local/li
109
109
### For the app developers – pack the libraries with your application
110
110
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.
111
111
## 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:
113
113
```
114
114
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.
115
115
@@ -128,7 +128,7 @@ FailFast: Couldn't find a valid ICU package installed on the system. Set the con
128
128
Aborted (core dumped)
129
129
```
130
130
**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
+
132
132
133
133
**Q2:** I try to run a .NET Core application on RHEL 6 / CentOS 6 and I get the exception similar to the following one:
Copy file name to clipboardexpand all lines: Documentation/diagnostics/portable_pdb.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ The Windows PDB format has been around a long time now (~25 years), and it evolv
9
9
## Why a new format? ##
10
10
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:
11
11
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).
13
13
* At the time the effort was begun there wasn't a cross-platform library that could read or write the original windows PDB format.
14
14
* 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.
Copy file name to clipboardexpand all lines: README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ The latest major release is [.NET 5.0](release-notes/5.0/README.md). The latest
28
28
29
29
## How to Engage, Contribute and Provide Feedback
30
30
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.
32
32
33
33
Check the [product roadmap](https://aka.ms/dotnet-product-roadmap) to see what the team is focusing on.
Copy file name to clipboardexpand all lines: product-roadmap/current.md
+8-8
Original file line number
Diff line number
Diff line change
@@ -115,7 +115,7 @@ Items in each section include the following icons:
115
115
116
116
- Multi Language support for Jupyter Notebooks (C#, F#, PowerShell)[Post](https://devblogs.microsoft.com/dotnet/net-interactive-is-here-net-notebooks-preview-2/)
117
117
-[.NET Notebooks support - Available in VS Code Insiders.](https://marketplace.visualstudio.com/items?itemName=ms-dotnettools.dotnet-interactive-vscode)
118
-
- VS Code
118
+
- VS Code
119
119
- Adding SQL to .NET Interactive
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.
Copy file name to clipboardexpand all lines: release-notes/2.1/2.1.23/2.1.23-install-instructions.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ See the [Release Notes](https://github.com/dotnet/core/blob/main/release-notes/2
10
10
11
11
## Docker
12
12
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.
Copy file name to clipboardexpand all lines: release-notes/2.1/2.1.23/2.1.23.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ Note: This is not a security release hence this update won't be immediately avai
38
38
39
39
## Docker Images
40
40
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.
Copy file name to clipboardexpand all lines: release-notes/2.1/2.1.23/2.1.616-download.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ This update for .NET Core 2.1 includes multiple SDK builds. If you are a Visual
34
34
35
35
## Docker
36
36
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.
Copy file name to clipboardexpand all lines: release-notes/2.1/2.1.23/2.1.811-download.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ This update for .NET Core 2.1 includes multiple SDK builds. If you are a Visual
35
35
36
36
## Docker
37
37
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.
Copy file name to clipboardexpand all lines: release-notes/2.1/2.1.24/2.1.24-install-instructions.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ See the [Release Notes](https://github.com/dotnet/core/blob/main/release-notes/2
10
10
11
11
## Docker
12
12
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.
Copy file name to clipboardexpand all lines: release-notes/2.1/2.1.24/2.1.24.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ Visit [.NET Documentation](https://docs.microsoft.com/dotnet/core/) to learn abo
30
30
31
31
## Docker Images
32
32
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.
Copy file name to clipboardexpand all lines: release-notes/2.1/2.1.24/2.1.617-download.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ This update for .NET Core 2.1 includes multiple SDK builds. If you are a Visual
34
34
35
35
## Docker
36
36
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.
Copy file name to clipboardexpand all lines: release-notes/2.1/2.1.24/2.1.812-download.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,7 @@ This update for .NET Core 2.1 includes multiple SDK builds. If you are a Visual
35
35
36
36
## Docker
37
37
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.
0 commit comments