1
+
# .NET Core 3.1.10
2
+
3
+
.NET Core 3.1.10 comprises:
4
+
5
+
* .NET Core Runtime 3.1.10
6
+
* ASP.NET Core 3.1.10
7
+
* .NET Core SDK 3.1.110
8
+
9
+
See the [Release Notes](https://github.com/dotnet/core/blob/master/release-notes/3.1/3.1.10/3.1.10.md) for details about what is included in this update.
10
+
11
+
## Docker
12
+
13
+
The [.NET Core Docker images](https://hub.docker.com/r/microsoft/dotnet/) have been updated for this release. Details on our Docker versioning and how to work with the images can be seen in ["Staying up-to-date with .NET Container Images"](https://devblogs.microsoft.com/dotnet/staying-up-to-date-with-net-container-images/).
14
+
15
+
## Installing .NET Core on Linux
16
+
17
+
### Install using Snap
18
+
19
+
Snap is a system that installs applications in an isolated environment and provides for automatic updates. Many distributions that are not directly supported by .NET Core can use Snaps to install. See the [list of distributions supported Snap](https://docs.snapcraft.io/installing-snapd/6735) for details.
20
+
21
+
After configuring Snap on your system, run the following command to install the latest .NET Core SDK.
22
+
23
+
`sudo snap install dotnet-sdk --channel 3.1/stable --classic`
24
+
25
+
When .NET Core in installed using the Snap package, the default .NET Core command is `dotnet-sdk.dotnet`, as opposed to just `dotnet`. The benefit of the namespaced command is that it will not conflict with a globally installed .NET Core version you may have. This command can be aliased to `dotnet` with:
26
+
27
+
`sudo snap alias dotnet-sdk.dotnet dotnet`
28
+
29
+
**Note:** Some distros require an additional step to enable access to the SSL certificate. If you experience SSL errors when running `dotnet restore`, see [Linux Setup](https://github.com/dotnet/core/blob/master/Documentation/linux-setup.md) for a possible resolution.
30
+
31
+
### Install using a Package Manager
32
+
33
+
Before installing .NET, you need to register the Microsoft key, register the product repository, and install required dependencies. This only needs to be done once per machine. Refer to [Setting up Linux for .NET Core][linux-setup] for the requirements.
34
+
35
+
The following commands don't specifically include package managers to help with readability. Here are the package managers typically used by the distros on which .NET Core is supported.
36
+
37
+
| Distro | Package Manager |
38
+
| --- | :----: |
39
+
| CentOS, Oracle | yum |
40
+
| Debian, Ubuntu | apt-get |
41
+
| Fedora | dnf |
42
+
| OpenSUSE, SLES | zypper |
43
+
44
+
## Develop applications
45
+
To develop applications using the .NET Core SDK, run the following command. The .NET Core and ASP.NET Core runtimes are included.
46
+
47
+
```bash
48
+
sudo [package manager] update or refresh
49
+
sudo [package manager] install dotnet-sdk-3.1
50
+
```
51
+
52
+
## Run applications
53
+
If you only need to run existing applications, run the following command. The .NET Core and ASP.NET Core runtimes are included.
54
+
55
+
```bash
56
+
sudo [package manager] update or refresh
57
+
sudo [package manager] install aspnetcore-runtime-3.1
58
+
```
59
+
60
+
### Installation from a binary archive
61
+
62
+
Installing from the packages detailed above is recommended or you can install from binary archive, if that better suits your needs. When using binary archives to install, the contents must be extracted to a user location such as `$HOME/dotnet`, a symbolic link created for `dotnet` and a few dependencies installed. Dependency requirements can be seen in the [Linux System Prerequisites](https://github.com/dotnet/core/blob/master/Documentation/linux-prereqs.md) document.
63
+
64
+
```bash
65
+
mkdir -p $HOME/dotnet && tar zxf dotnet.tar.gz -C $HOME/dotnet
66
+
export PATH=$PATH:$HOME/dotnet
67
+
```
68
+
69
+
## .NET Core Runtime-only installation
70
+
71
+
If only the .NET Core Runtime is needed, install `dotnet-runtime-3.1` using your package manager. If you also need ASP.NET Core functionality, installing `aspnetcore-runtime-3.1` will install both the ASP.NET Core Runtime and .NET Core Runtime.
72
+
73
+
## Windows Server Hosting
74
+
75
+
If you're looking to host standalone apps on servers, the following installer can be used on Windows systems.
76
+
77
+
### Windows
78
+
79
+
You can download the Windows Server Hosting installer and run the following command from an Administrator command prompt:
80
+
81
+
* [dotnet-hosting-3.1.10-win.exe][dotnet-hosting-win.exe]
82
+
83
+
This will install the ASP.NET Core Module for IIS.
84
+
85
+
[blob-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/Runtime/
86
+
[blob-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/Sdk/
87
+
[release-notes]: https://github.com/dotnet/core/blob/master/release-notes/3.1/3.1.10/3.1.10.md
88
+
89
+
[checksums-runtime]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.1.10-sha.txt
90
+
[checksums-sdk]: https://dotnetcli.blob.core.windows.net/dotnet/checksums/3.1.10-sha.txt
91
+
92
+
[linux-setup]: https://docs.microsoft.com/dotnet/core/install/linux
93
+
94
+
[dotnet-blog]: https://devblogs.microsoft.com/dotnet/net-core-november-2020/
95
+
96
+
[dotnet-hosting-win.exe]: https://download.visualstudio.microsoft.com/download/pr/7e35ac45-bb15-450a-946c-fe6ea287f854/a37cfb0987e21097c7969dda482cebd3/dotnet-hosting-3.1.10-win.exe
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4