带有WPF应用程序和.NET Core Web应用程序的.Net标准类库

时间:2019-01-25 02:31:29

标签: .net-core .net-4.5 .net-standard

我有,

  1. 使用.Net Framework 4.5.2编写的现有类库
  2. 退出使用.Net Framework 4.5.2编写的WPF应用程序
  3. 使用类库的WPF应用程序。

现在,我想使用dotnetcore 2.1创建asp.net Core Web应用程序,并希望引用类库。

我需要

  1. 使用.Net Standard转换类库吗?
  2. 哪个版本的.Net Standard,以便我能够引用我无法转换为.Net Core UI应用程序的WPF应用程序(带有.Net Framework 4.5.2)?

1 个答案:

答案 0 :(得分:1)

  1. 是的,您必须将库转换为.NET Standard,才能从Framework和.Net Core应用程序中引用它。

  2. 您需要使用.NET Standard 1.2或更低版本才能支持.NET Framework 4.5.2

有关详细信息,请参见文档:https://docs.microsoft.com/en-us/dotnet/standard/net-standard#net-implementation-support