编程语言
首页 > 编程语言> > c# – 如何创建一个同时针对.NET 2.0和.NET Standard的库?

c# – 如何创建一个同时针对.NET 2.0和.NET Standard的库?

作者:互联网

我有一个目前支持.NET 2.0的small library.

我不使用后来框架版本的任何功能,所以保持2.0支持会很好,但我也希望以.NET Core(或更确切地说,.NET标准)为目标.

我试图将两个框架添加到project.json:

"frameworks": {
  "net20": {},
  "netstandard1.6": {
    "imports": "dnxcore50"
  }
}

但是我的库需要在.NET Standard上运行的NuGet包(System.Reflection和Microsoft.AspNetCore.WebUtilities)与.NET 2.0不兼容.

如何在不使用几乎相同的代码维护两个完全独立的项目的情况下解决此问题?

解决方法:

如果您依赖Microsoft.AspNetCore.*软件包作为支持.NET Standard的绝对最低要求,则不能使用.NET 4.5.

.NET 4.5是第一个包含.NET Core所基于的System.Runtime的版本.但是当你仔细考虑它时,它也毫无意义.如果您需要在库中支持ASP.NET Core.

如果你的库应该运行ASP.NET Core和ASP.NET 4(即MVC 5,WebApi 2),那么你需要有条件地使用ASP.NET Dependencies并使用#if预处理器指令.

"frameworks": {
  "net20": {
    "dependencies": {
      "NameOf.AspNetLegacyPackage": "1.2.3"
    }
  },
  "netstandard1.3": {
    "dependencies": {
      "Microsoft.AspNetCore.WebUtilities" : "1.1.0"
    },
    "imports": "dnxcore50"
  }
}

我使用netstandard1.3作为Microsoft.AspNetCore.WebUtilities的最小值,但根据您的其他依赖关系,您可能需要更高或更低.

NameOf.AspNetLegacyPackage是包的名称,它包含您需要的Microsoft.AspNetCore.WebUtilities的相同功能,但是如果有的话,它适用于.NET Framework 2.0.如果不是,您必须将其删除并自行编写替换功能.

然后在你的代码中使用

#if NETSTANDARD1_3
    // Code or APIs which is only available in netstandard1.3/net4.6 
    // this includes the Microsoft.AspNetCore.WebUtillities
#else
    // Use code or API which runs under .NET Framework 2.0
#endif

或者,如果您要放弃.NET Framework 2.0支持并转到4.5.1,您可以继续使用Microsoft.AspNetCore.WebUtillities(请参阅NuGet page以获取依赖关系)

"dependencies": {
  "Microsoft.AspNetCore.WebUtilities" : "1.1.0"
},
"frameworks": {
  "net451": {
  },
  "netstandard1.3": {
    "imports": "dnxcore50"
  }
}

标签:c,net,net-core,asp-net-core,net-standard
来源: https://codeday.me/bug/20190608/1198166.html