.NET Core - 先决条件



在本章中,我们将讨论部署和运行所需的不同依赖项。这些依赖项包括使用 Visual Studio 在 Windows 机器上开发的 .NET Core 应用程序。

支持的 Windows 版本

.NET Core 支持以下版本的 Windows:

  • Windows 7 SP1
  • Windows 8.1
  • Windows 10
  • Windows Server 2008 R2 SP1(完整服务器或服务器核心)
  • Windows Server 2012 SP1(完整服务器或服务器核心)
  • Windows Server 2012 R2 SP1(完整服务器或服务器核心)
  • Windows Server 2016(完整服务器、服务器核心或 Nano 服务器)

依赖项

  • 如果您在低于 Windows 10 和 Windows Server 2016 的 Windows 版本上运行 .NET Core 应用程序,则还需要 Visual C++ 可再发行组件。

  • 如果您使用 .NET Core 安装程序,则此依赖项会自动为您安装。

  • 如果您通过安装程序脚本安装 .NET Core 或部署自包含的 .NET Core 应用程序,则需要手动安装 Visual Studio 2015 的 Visual C++ 可再发行组件。

  • 对于 Windows 7 和 Windows Server 2008 机器,您需要确保您的 Windows 安装是最新的,并且还包含通过 Windows 更新安装的修补程序 KB2533623。

使用 Visual Studio 的先决条件

  • 要使用 .NET Core SDK 开发 .NET Core 应用程序,您可以使用任何您选择的编辑器。

  • 但是,如果您想在 Windows 上使用 Visual Studio 开发 .NET Core 应用程序,可以使用以下两个版本:

    • Visual Studio 2015

    • Visual Studio 2017 RC

  • 使用 Visual Studio 2015 创建的项目默认情况下将基于 project.json,而使用 Visual Studio 2017 RC 创建的项目将始终基于 MSBuild。

广告