このコンテンツは選択した言語では利用できません。
Getting Started Guide
Abstract
- The ability to follow a microservices-based approach, where some components are built with .NET and others with Java, but all can run on a common, supported platform in Red Hat Enterprise Linux and OpenShift Container Platform.
- The capacity to more easily develop new .NET Core workloads on Microsoft Windows. Customers can deploy and run on either Red Hat Enterprise Linux or Windows Server.
- A heterogeneous data center, where the underlying infrastructure is capable of running .NET applications without having to rely solely on Windows Server.
Chapter 1. Using .NET Core 2.1 on Red Hat Enterprise Linux リンクのコピーリンクがクリップボードにコピーされました!
This Getting Started Guide describes how to install .NET Core 2.1 on Red Hat Enterprise Linux (RHEL). See Red Hat Enterprise Linux documentation for more information about RHEL 7.
1.1. Install and Register Red Hat Enterprise Linux リンクのコピーリンクがクリップボードにコピーされました!
Install RHEL 7 using one of the following images:
- Red Hat Enterprise Linux 7 Server
- Red Hat Enterprise Linux 7 Workstation
Red Hat Enterprise Linux for Scientific Computing
See the Red Hat Enterprise Linux Installation Guide for details on how to install RHEL.
See Red Hat Enterprise Linux Product Documentation page for available RHEL versions.
Use the following command to register the system.
sudo subscription-manager register
$ sudo subscription-manager registerCopy to Clipboard Copied! Toggle word wrap Toggle overflow You can also register the system by following the appropriate steps in Registering and Unregistering a System in the Red Hat Subscription Management document.
Display a list of all subscriptions that are available for your system and identify the pool ID for the subscription.
sudo subscription-manager list --available
$ sudo subscription-manager list --availableCopy to Clipboard Copied! Toggle word wrap Toggle overflow This command displays the subscription name, unique identifier, expiration date, and other details related to it. The pool ID is listed on a line beginning with Pool ID.
Attach the subscription that provides access to the
dotNET on RHELrepository. Use the pool ID you identified in the previous step.sudo subscription-manager attach --pool=<appropriate pool ID from the subscription>
$ sudo subscription-manager attach --pool=<appropriate pool ID from the subscription>Copy to Clipboard Copied! Toggle word wrap Toggle overflow Enable the .NET Core channel for Red Hat Enterprise 7 Server, Red Hat Enterprise 7 Workstation, or HPC Compute Node with one of the following commands, respectively.
sudo subscription-manager repos --enable=rhel-7-server-dotnet-rpms sudo subscription-manager repos --enable=rhel-7-workstation-dotnet-rpms sudo subscription-manager repos --enable=rhel-7-hpc-node-dotnet-rpms
$ sudo subscription-manager repos --enable=rhel-7-server-dotnet-rpms $ sudo subscription-manager repos --enable=rhel-7-workstation-dotnet-rpms $ sudo subscription-manager repos --enable=rhel-7-hpc-node-dotnet-rpmsCopy to Clipboard Copied! Toggle word wrap Toggle overflow Verify the list of subscriptions attached to your system.
sudo subscription-manager list --consumed
$ sudo subscription-manager list --consumedCopy to Clipboard Copied! Toggle word wrap Toggle overflow Install the
scltool.sudo yum install scl-utils
$ sudo yum install scl-utilsCopy to Clipboard Copied! Toggle word wrap Toggle overflow
1.2. Install .NET Core リンクのコピーリンクがクリップボードにコピーされました!
Install .NET Core 2.1 and all of its dependencies.
sudo yum install rh-dotnet21 -y
$ sudo yum install rh-dotnet21 -yCopy to Clipboard Copied! Toggle word wrap Toggle overflow Enable the
rh-dotnet21Software Collection environment so you can rundotnetcommands in the bash shellThis procedure installs the .NET Core 2.1 runtime with the latest 2.1 SDK. When a newer SDK becomes available, it automatically installs as a package update.
scl enable rh-dotnet21 bash
$ scl enable rh-dotnet21 bashCopy to Clipboard Copied! Toggle word wrap Toggle overflow This command does not persist; it creates a new shell, and the
dotnetcommand is only available within that shell. If you log out, use another shell, or open up a new terminal, thedotnetcommand is no longer enabled.WarningRed Hat does not recommend permanently enabling
rh-dotnet21because it may affect other programs. For example,rh-dotnet21includes a version oflibcurlthat differs from the base RHEL version. This may lead to issues in programs that do not expect a different version oflibcurl. If you want to enablerh-dotnetpermanently, add the following line to your~/.bashrcfile.source scl_source enable rh-dotnet21Run the following command to verify the installation succeeded.
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
1.3. Create an Application リンクのコピーリンクがクリップボードにコピーされました!
Create a new Console application in a directory called
hello-world.Copy to Clipboard Copied! Toggle word wrap Toggle overflow Run the project.
cd hello-world dotnet run
$ cd hello-world $ dotnet run Hello World!Copy to Clipboard Copied! Toggle word wrap Toggle overflow
1.4. Publish Applications リンクのコピーリンクがクリップボードにコピーされました!
The .NET Core 2.1 applications can be published to use a shared system-wide version of .NET Core or to include .NET Core. These two deployment types are called framework-dependent deployment (FDD) and self-contained deployment (SCD), respectively.
For RHEL, we recommend publishing by FDD. This method ensures the application is using an up-to-date version of .NET Core, built by Red Hat, that includes a specific set of native dependencies. These native libraries are part of the rh-dotnet21 Software Collection. On the other hand, SCD uses a runtime built by Microsoft. Running applications outside the rh-dotnet21 Software Collection may cause issues due to the unavailability of native libraries.
1.4.1. Publish .NET Core Applications リンクのコピーリンクがクリップボードにコピーされました!
Use the following command to publish a framework-dependent application.
dotnet publish -f netcoreapp2.1 -c Release
$ dotnet publish -f netcoreapp2.1 -c ReleaseCopy to Clipboard Copied! Toggle word wrap Toggle overflow Optional: If the application is only for RHEL, trim out the dependencies needed for other platforms with these commands.
dotnet restore -r rhel.7-x64 dotnet publish -f netcoreapp2.1 -c Release -r rhel.7-x64 --self-contained false
$ dotnet restore -r rhel.7-x64 $ dotnet publish -f netcoreapp2.1 -c Release -r rhel.7-x64 --self-contained falseCopy to Clipboard Copied! Toggle word wrap Toggle overflow Enable the Software Collection and pass the application assembly name to the
dotnetcommand to run the application on a RHEL system.scl enable rh-dotnet21 -- dotnet <app>.dll
$ scl enable rh-dotnet21 -- dotnet <app>.dllCopy to Clipboard Copied! Toggle word wrap Toggle overflow This command can be added to a script that is published with the application. Add the following script to your project and update the
ASSEMBLYvariable.Copy to Clipboard Copied! Toggle word wrap Toggle overflow To include the script when publishing, add this ItemGroup to the
csprojfile.<ItemGroup> <None Update="<scriptname>" Condition="'$(RuntimeIdentifier)' == 'rhel.7-x64' and '$(SelfContained)' == 'false'" CopyToPublishDirectory="PreserveNewest" /> </ItemGroup><ItemGroup> <None Update="<scriptname>" Condition="'$(RuntimeIdentifier)' == 'rhel.7-x64' and '$(SelfContained)' == 'false'" CopyToPublishDirectory="PreserveNewest" /> </ItemGroup>Copy to Clipboard Copied! Toggle word wrap Toggle overflow
1.4.2. Publish ASP.NET Core Applications リンクのコピーリンクがクリップボードにコピーされました!
When using the Microsoft SDK, ASP.NET Core 2.1 web applications are published with a dependency on the ASP.NET Core shared framework. This is a set of packages that are expected to be available on the runtime system.
When publishing on RHEL, these packages are included with the application. To include the packages using the Microsoft SDK, the MicrosoftNETPlatformLibrary property must be set to Microsoft.NETCore.App in the project file as shown below.
As an alternative, this property can be set when publishing the application.
dotnet publish -f netcoreapp2.1 -c Release -r rhel.7-x64 --self-contained false /p:MicrosoftNETPlatformLibrary=Microsoft.NETCore.App
$ dotnet publish -f netcoreapp2.1 -c Release -r rhel.7-x64 --self-contained false /p:MicrosoftNETPlatformLibrary=Microsoft.NETCore.App
1.5. Run Applications on Linux containers リンクのコピーリンクがクリップボードにコピーされました!
This section shows how to use the dotnet/dotnet-21-runtime-rhel7 image to run a precompiled application inside a Linux container.
Create a new mvc project in a directory named
mvc_runtime_example.dotnet new mvc -o mvc_runtime_example --no-restore cd mvc_runtime_example
$ dotnet new mvc -o mvc_runtime_example --no-restore $ cd mvc_runtime_exampleCopy to Clipboard Copied! Toggle word wrap Toggle overflow Restore and publish the project.
dotnet restore -r rhel.7-x64 dotnet publish -f netcoreapp2.1 -c Release -r rhel.7-x64 --self-contained false /p:MicrosoftNETPlatformLibrary=Microsoft.NETCore.App
$ dotnet restore -r rhel.7-x64 $ dotnet publish -f netcoreapp2.1 -c Release -r rhel.7-x64 --self-contained false /p:MicrosoftNETPlatformLibrary=Microsoft.NETCore.AppCopy to Clipboard Copied! Toggle word wrap Toggle overflow Create the
Dockerfile.Copy to Clipboard Copied! Toggle word wrap Toggle overflow Build your image.
podman build -t dotnet-21-runtime-example .
$ podman build -t dotnet-21-runtime-example .Copy to Clipboard Copied! Toggle word wrap Toggle overflow NoteIf you get an error containing the message
unable to retrieve auth token: invalid username/password, you need to provide credentials for theregistry.redhat.ioserver. Use the command$ podman login registry.redhat.ioto log in. Your credentials are typically the same as those used for the Red Hat Customer Portal.Run your image.
podman run -d -p8080:8080 dotnet-21-runtime-example
$ podman run -d -p8080:8080 dotnet-21-runtime-exampleCopy to Clipboard Copied! Toggle word wrap Toggle overflow - View the result in a browser: http://127.0.0.1:8080.
Chapter 2. Using .NET Core 2.1 on Red Hat OpenShift Container Platform リンクのコピーリンクがクリップボードにコピーされました!
2.1. Installing Image Streams リンクのコピーリンクがクリップボードにコピーされました!
The .NET Core image streams definition can be defined globally in the openshift namespace or locally in your specific project.
If you are a system administrator or otherwise have sufficient permissions, change to the
openshiftproject. Using theopenshiftproject allows you to globally update the image stream definitions.oc project openshift
$ oc project openshiftCopy to Clipboard Copied! Toggle word wrap Toggle overflow If you do not have permissions to use the
openshiftproject, you can still update your project definitions starting with Step 2.Run the following commands to list all available .NET Core image versions.
oc describe is dotnet -n openshift oc describe is dotnet
$ oc describe is dotnet -n openshift $ oc describe is dotnetCopy to Clipboard Copied! Toggle word wrap Toggle overflow The output shows installed images or the message
Error from server (NotFound)if no images are installed.To pull the images, OpenShift needs credentials for authenticating with the
registry.redhat.ioserver. These credentials are stored in a secret.NoteFor OpenShift 3.11 and later, a secret is preconfigured for the
openshiftnamespace.Enter the following command to list secrets. The first column shows the secret name.
oc get secret | grep kubernetes.io/dockerc
$ oc get secret | grep kubernetes.io/dockercCopy to Clipboard Copied! Toggle word wrap Toggle overflow To check the contents of a secret, you can decode the
.dockercfgor.dockerconfigjsondata from Base64 format. This allows you to see if you already have credentials for theregistry.redhat.ioserver. Enter the following command to show the.dockercfgsection in a secret.oc get secret <secret-name> -o yaml | grep .dockercfg
$ oc get secret <secret-name> -o yaml | grep .dockercfg .dockercfg: eyJyZWdpc3RyeS5yZWRoYXQuaW8iOnsidXNlcm5hbWUiOiIqKioqKioqKiIsInBhc3N3b3JkIjoiKioqKioqKioiLCJlbWFpbCI6InVudXNlZCIsImF1dGgiOiJLaW9xS2lvcUtpbzZLaW9xS2lvcUtpbz0ifX0=Copy to Clipboard Copied! Toggle word wrap Toggle overflow Copy and paste the output in the following command to convert it from Base64 format. The example below shows the credentials for the
registry.redhat.ioserver.echo eyJyZWdpc3RyeS5yZWRoYXQuaW8iOnsidXNlcm5hbWUiOiIqKioqKioqKiIsInBhc3N3b3JkIjoiKioqKioqKioiLCJlbWFpbCI6InVudXNlZCIsImF1dGgiOiJLaW9xS2lvcUtpbzZLaW9xS2lvcUtpbz0ifX0= | base64 -d
$ echo eyJyZWdpc3RyeS5yZWRoYXQuaW8iOnsidXNlcm5hbWUiOiIqKioqKioqKiIsInBhc3N3b3JkIjoiKioqKioqKioiLCJlbWFpbCI6InVudXNlZCIsImF1dGgiOiJLaW9xS2lvcUtpbzZLaW9xS2lvcUtpbz0ifX0= | base64 -d {"registry.redhat.io":{"username":"********","password":"********","email":"unused","auth":"KioqKioqKio6KioqKioqKio="}}Copy to Clipboard Copied! Toggle word wrap Toggle overflow You need to add a secret if there is no secret listed with credentials for the
registry.redhat.ioserver.Red Hat account credentials are used for
registry.redhat.ioaccess. If you are a customer with entitlements to Red Hat products, you already have account credentials to use. These are typically the same credentials used to log in to the Red Hat Customer Portal. To verify your Red Hat credentials, enter the following command and attempt to log in.podman login registry.redhat.io
$ podman login registry.redhat.ioCopy to Clipboard Copied! Toggle word wrap Toggle overflow If you cannot log in, you first need to get an account with Red Hat. See Red Hat Container Registry Authentication for additional information. If you can log in, enter the following commands to create the secret.
Copy to Clipboard Copied! Toggle word wrap Toggle overflow After creating the secret, enter the following command to import new image streams.
oc create -f https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/master/dotnet_imagestreams.json
$ oc create -f https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/master/dotnet_imagestreams.jsonCopy to Clipboard Copied! Toggle word wrap Toggle overflow If image streams were already installed, use the
replacecommand to update the image stream definitions.oc replace -f https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/master/dotnet_imagestreams.json
$ oc replace -f https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/master/dotnet_imagestreams.jsonCopy to Clipboard Copied! Toggle word wrap Toggle overflow
2.2. Deploying Applications from Source リンクのコピーリンクがクリップボードにコピーされました!
Run the following commands to deploy the ASP.NET Core application, which is in the
appfolder on thedotnetcore-2.1branch of theredhat-developer/s2i-dotnetcore-exGitHub repository.oc new-app --name=exampleapp 'dotnet:2.1~https://github.com/redhat-developer/s2i-dotnetcore-ex#dotnetcore-2.1' --build-env DOTNET_STARTUP_PROJECT=app
$ oc new-app --name=exampleapp 'dotnet:2.1~https://github.com/redhat-developer/s2i-dotnetcore-ex#dotnetcore-2.1' --build-env DOTNET_STARTUP_PROJECT=appCopy to Clipboard Copied! Toggle word wrap Toggle overflow Use the
oc logscommand to track progress of the build.oc logs -f bc/exampleapp
$ oc logs -f bc/exampleappCopy to Clipboard Copied! Toggle word wrap Toggle overflow View the deployed application once the build is finished.
oc logs -f dc/exampleapp
$ oc logs -f dc/exampleappCopy to Clipboard Copied! Toggle word wrap Toggle overflow At this point, the application is accessible within the project. To make it accessible externally, use the
oc exposecommand. You can then useoc get routesto find the URL.oc expose svc/exampleapp oc get routes
$ oc expose svc/exampleapp $ oc get routesCopy to Clipboard Copied! Toggle word wrap Toggle overflow
2.3. Deploying Applications from Binary Artifacts リンクのコピーリンクがクリップボードにコピーされました!
The .NET Core S2I builder image can be used to build an application using binary artifacts that you provide.
Publish your application as described in Publish Applications. For example, the following commands create a new web application and publish it.
dotnet new web -o webapp cd webapp dotnet publish -c Release /p:MicrosoftNETPlatformLibrary=Microsoft.NETCore.App
$ dotnet new web -o webapp $ cd webapp $ dotnet publish -c Release /p:MicrosoftNETPlatformLibrary=Microsoft.NETCore.AppCopy to Clipboard Copied! Toggle word wrap Toggle overflow Create a new binary build using the
oc new-buildcommand.oc new-build --name=mywebapp dotnet:2.1 --binary=true
$ oc new-build --name=mywebapp dotnet:2.1 --binary=trueCopy to Clipboard Copied! Toggle word wrap Toggle overflow Start a build using the
oc start-buildcommand, specifying the path to the binary artifacts on your local machine.oc start-build mywebapp --from-dir=bin/Release/netcoreapp2.1/publish
$ oc start-build mywebapp --from-dir=bin/Release/netcoreapp2.1/publishCopy to Clipboard Copied! Toggle word wrap Toggle overflow Create a new application using the
oc new-appcommand.oc new-app mywebapp
$ oc new-app mywebappCopy to Clipboard Copied! Toggle word wrap Toggle overflow
2.4. Using a Jenkins Slave リンクのコピーリンクがクリップボードにコピーされました!
The OpenShift Container Platform Jenkins image provides auto-discovery of the .NET Core 2.1 slave image (dotnet-21). For auto-discovery to work, you need to add a Jenkins slave ConfigMap yaml file to the project.
Change to the project where Jenkins is (or will be) deployed.
oc project <projectname>
$ oc project <projectname>Copy to Clipboard Copied! Toggle word wrap Toggle overflow Create a
dotnet-jenkins-slave.yamlfile. The value used for the <serviceAccount> element is the account used by the Jenkins slave. If no value is specified, thedefaultservice account is used.Copy to Clipboard Copied! Toggle word wrap Toggle overflow Import the configuration into the project.
oc create -f dotnet-jenkins-slave.yaml
$ oc create -f dotnet-jenkins-slave.yamlCopy to Clipboard Copied! Toggle word wrap Toggle overflow The slave image can now be used.
Example: The following example shows a Jenkins pipeline added to OpenShift Container Platform. Note that when a Jenkins pipeline is added and no Jenkins master is running, OpenShift automatically deploys a master. See OpenShift Container Platform and Jenkins for additional information about deploying and configuring a Jenkins server instance.
In the example steps, the BuildConfig yaml file includes a simple Jenkins pipeline configured using the dotnet-21 Jenkins slave. There are three stages in the example BuildConfig yaml file:
-
First, the sources are checked out.
-
Second, the application is published.
- Third, the image is assembled using a binary build. See Deploying Applications from Binary Artifacts for additional information about binary builds.
Complete the steps below to configure the example Jenkins master-slave pipeline.
Create the
buildconfig.yamlfile.Copy to Clipboard Copied! Toggle word wrap Toggle overflow Import the
BuildConfigfile to OpenShift.oc create -f buildconfig.yaml
$ oc create -f buildconfig.yamlCopy to Clipboard Copied! Toggle word wrap Toggle overflow -
Launch the OpenShift console. Go to Builds > Pipelines. The
dotnetapp-buildpipeline is available. Click Start Pipeline. It may take a while for the build to start because the Jenkins image(s) need to be downloaded first.
During the build you can watch the different pipeline stages complete in the OpenShift console. You can also click View Log to see the pipeline stages complete in Jenkins.
-
When the Jenkins pipeline build completes, go to Builds > Images. The
dotnetappimage is built and available.
2.5. Environment Variables リンクのコピーリンクがクリップボードにコピーされました!
The .NET Core images support a number of environment variables to control the build behavior of your .NET Core application. These variables can be set as part of the build configuration, or they can be added to an .s2i/environment file in the application source code repository.
| Variable Name | Description | Default |
|---|---|---|
| DOTNET_STARTUP_PROJECT |
Selects project to run. This must be a project file (for example, |
|
| DOTNET_ASSEMBLY_NAME |
Selects the assembly to run. This must not include the .dll extension. Set this to the output assembly name specified in |
The name of the |
| DOTNET_RESTORE_SOURCES |
Specifies the space-separated list of NuGet package sources used during the restore operation. This overrides all of the sources specified in the | |
| DOTNET_TOOLS |
Specifies a list of .NET tools to install before building the app. It is possible to install a specific version by post pending the package name with | |
| DOTNET_NPM_TOOLS | Specifies a list of NPM packages to install before building the application. | |
| DOTNET_TEST_PROJECTS |
Specifies the list of test projects to test. This must be project files or folders containing a single project file. | |
| DOTNET_CONFIGURATION |
Runs the application in Debug or Release mode. This value should be either |
|
| DOTNET_VERBOSITY |
Specifies the verbosity of the dotnet build commands. When set, the environment variables are printed at the start of the build. This variable can be set to one of the msbuild verbosity values ( | |
| HTTP_PROXY, HTTPS_PROXY | Configures the HTTP/HTTPS proxy used when building and running the application. | |
| DOTNET_RM_SRC |
When set to | |
| DOTNET_SSL_DIRS | Used to specify a list of folders/files with additional SSL certificates to trust. The certificates are trusted by each process that runs during the build and all processes that run in the image after the build (including the application that was built). The items can be absolute paths (starting with /) or paths in the source repository (for example, certificates). | |
| NPM_MIRROR | Uses a custom NPM registry mirror to download packages during the build process. | |
| ASPNETCORE_URLS |
This variable is set to | |
| DOTNET_RESTORE_DISABLE_PARALLEL | When set to true, disables restoring multiple projects in parallel. This reduces restore timeout errors when the build container is running with low CPU limits. | false |
| DOTNET_INCREMENTAL | When set to true, the NuGet packages will be kept so they can be re-used for an incremental build. Defaults to false. | |
| DOTNET_PACK |
When set to true, creates a | |
| [OBSOLETE: April 2019] - DOTNET_SDK_VERSION |
Selects the default sdk version when building. If there is a | Lowest sdk version available in the image |
2.6. Sample Applications リンクのコピーリンクがクリップボードにコピーされました!
Three sample applications are available:
- dotnet-example: This is the default model–view–controller (MVC) application.
-
dotnet-runtime-example: This shows how to build an MVC application using a chained build. The application is built in
dotnet/dotnet-21-rhel7. The result is deployed indotnet/dotnet-21-runtime-rhel7. Note that chained builds are not supported on OpenShift Online. - dotnet-pgsql-persistent: This is the Microsoft ASP.NET Core MusicStore sample application using a PostgreSQL backend.
To add the samples using the OpenShift Web Console, browse to your project and click Add to project. You can filter for dotnet. If the samples do not show up, you can add them to your installation by running the following commands.
oc create -f https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/master/templates/dotnet-example.json oc create -f https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/master/templates/dotnet-runtime-example.json oc create -f https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/master/templates/dotnet-pgsql-persistent.json
$ oc create -f https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/master/templates/dotnet-example.json
$ oc create -f https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/master/templates/dotnet-runtime-example.json
$ oc create -f https://raw.githubusercontent.com/redhat-developer/s2i-dotnetcore/master/templates/dotnet-pgsql-persistent.json
Chapter 3. Migrating to .NET Core 2.1 リンクのコピーリンクがクリップボードにコピーされました!
This chapter provides migration information for .NET Core 2.1.
3.1. Migrating from previous versions of .NET Core リンクのコピーリンクがクリップボードにコピーされました!
Microsoft provides instructions for migrating from most previous versions of .NET Core. When migrating, the following ASP.NET Core 2.0 property should no longer be specified. It should remain the default value for .NET Core 2.1. Make sure to remove this property from the project file and command line, if it is being specified there.
<PublishWithAspNetCoreTargetManifest>false</PublishWithAspNetCoreTargetManifest>
See the following Microsoft articles to migrate from previous versions of .NET Core.
If migrating from .NET Core 1.x to 2.0, see the first few related sections in Migrate from ASP.NET Core 1.x to 2.0. These sections provide guidance that is appropriate for a .NET Core 1.x to 2.0 migration path.
3.2. Migrating from .NET Framework to .NET Core 2.1 リンクのコピーリンクがクリップボードにコピーされました!
Review the following information to migrate from the .NET Framework.
3.2.1. Migration considerations リンクのコピーリンクがクリップボードにコピーされました!
Several technologies and APIs present in the .NET Framework are not available in .NET Core. If your application or library requires these APIs, consider finding alternatives or continue using the .NET Framework. .NET Core does not support the following technologies and APIs.
- Desktop applications, for example, Windows Forms and Windows Presentation Foundation (WPF)
- Windows Communication Foundation (WCF) servers (WCF clients are supported)
- .NET remoting
Additionally, a number of .NET APIs can only be used in Microsoft Windows environments. The following list shows a few examples of these Windows-specific APIs.
- Microsoft.Win32.Registry
- System.AppDomains
- System.Drawing
- System.Security.Principal.Windows
Consider using the .NET Portability Analyzer to identify API gaps and potential replacements. For example, enter the following command to find out how much of the API used by your .NET Framework 4.6 application is supported by .NET Core 2.1.
dotnet /path/to/ApiPort.dll analyze -f . -r html --target '.NET Framework,Version=4.6' --target '.NET Core,Version=2.1'
$ dotnet /path/to/ApiPort.dll analyze -f . -r html --target '.NET Framework,Version=4.6' --target '.NET Core,Version=2.1'
Several APIs that are not supported in the out-of-the-box version of .NET Core may be available from the Microsoft.Windows.Compatibility nuget package. Be careful when using this nuget package. Some of the APIs provided (such as Microsoft.Win32.Registry) only work on Windows, making your application incompatible with Red Hat Enterprise Linux.
3.2.2. .NET Framework migration articles リンクのコピーリンクがクリップボードにコピーされました!
Refer to the following Microsoft articles when migrating from .NET Framework.
- For general guidelines, see Porting to .NET Core from .NET Framework.
- For porting libraries, see Porting to .NET Core - Libraries.
- For migrating to ASP.NET Core, see Migrating to ASP.NET Core.
Appendix A. Revision History リンクのコピーリンクがクリップボードにコピーされました!
| Date | Version | Author | Changes |
|---|---|---|---|
| 08/21/2017 | 2.0 | Les Williams | Generally available |
| 08/30/2017 | 2.0 | Les Williams | Revised DOTNET_STARTUP_PROJECT and DOTNET_TEST_PROJECTS entries in Section 2.3 |
| 09/13/2017 | 2.0 | Les Williams | Revised Section 1.2 to include a note about how to permanently enable rh-dotnet20 |
| 02/14/2018 | 2.0 | Les Williams | Revised Section 2.2 to resolve BZ 1500230; added quoting for zsh and other shells |
| 02/28/2018 | 2.0.3 | Les Williams | Revised to include SDK 2.0 and 2.1 |
| 06/14/2018 | 2.1 | Les Williams | Generally available |
| 08/01/2018 | 2.1 | Toby Drake | Added Chapter 3 to provide migration instructions |
| 08/24/2018 | 2.1 | Toby Drake | Added steps to enable a user to get new image streams |
| 09/18/2018 | 2.1 | Toby Drake |
Revised Section 2.1 to include |
| 10/12/2018 | 2.1 | Toby Drake | Added DOTNET_SSL_DIRS and DOTNET_RM_SRC to Environment Variables. Added Deploy Applications from Binary Artifacts. |
| 11/08/2018 | 2.1 | Toby Drake |
Changed references from docker to podman. Changed registry server to |
| 11/27/2018 | 2.1 | Toby Drake | Added reference to support for RHEL 8. |
| 04/16/2019 | 2.2 | Les Williams | Revised environment variables section for DOTNET_INCREMENTAL and DOTNET_PACK variables |