ASP.NET .NET 4.7.2 环境中的核心应用程序可以运行?

ASP.NET Core application can be run in .NET 4.7.2 environment?

我构建了一个 ASP.NET 核心应用程序,但我有一个仅允许 .NET 4.7.2 版本的托管服务器。

是否可以部署到那个环境?

As @marc_s already said that you cannot run .NET Core on .Net xxx run time as two version has it's own runtime and they are different in regards of its architecture.

如果您有 .NET Core 应用程序,您可以根据其版本选择运行时。

这里是所有.NET Core versions的官方发布:

备注

如果您有任何需要在 .NET Core xxx 版本和 Classic .NET xxx 版本之间进行通信的任何要求,有一种方法可以在它们之间架起一座桥梁,那就是 .NET Standard library。 .NET Standard 背后的主要目标是在 .NET 生态系统中建立更大的统一性。您可以在 the official document here

中获取更多详细信息

希望以上解释能对您有所指导。