客户需要做什么才能在.NET Core 3.0上运行WPF应用程序构建?

时间:2019-09-24 09:11:41

标签: wpf .net-core

.NET Core 3.0昨天发布,我想知道客户需要什么来运行基于.NET Core 3.0的WPF应用程序

  1. 说客户正在使用Windows10。客户是否需要为.NET Core 3.0安装第一个Runtime?
  2. 说客户正在使用Windows7。客户需要做什么来运行应用程序?

1 个答案:

答案 0 :(得分:1)

作为开发人员,您将必须根据.NET Core 3转换并重新编译当前的WPF,然后重新部署它。 This博客文章应该提供一个很好的起点。

  

说客户正在使用Windows10。客户是否需要为.NET Core 3.0安装第一个Runtime?

.NET Core支持three types of deployments。对于独立式部署(SCD),最终用户除了安装the native dependencies of .NET Core for Windows之外无需安装其他任何软件。

  

说客户正在使用Windows7。客户需要做什么来运行应用程序?

与Windows 10基本相同。 .NET Core 3需要Windows 7 SP 1或更高版本:https://github.com/dotnet/core/blob/master/release-notes/3.0/3.0-supported-os.md#windows

还要注意,.NET Core 3支持single-file executables,它将所有框架特定的和引用的DLL,配置文件以及其他内容捆绑在一个可以分发给最终用户的单一本机.exe中。