A common class library consumed by both .NET Core and .Net 4.5.2

前端 未结 2 2173
礼貌的吻别
礼貌的吻别 2021-02-13 15:31

I\'m fairly new to .Net Core, but have made a working Asp.Net Core WebAPI site - now I want to share some code with another project...

  • I have Visual Studio 2015 wi
2条回答
  •  清歌不尽
    2021-02-13 16:05

    Here's how I create shared libraries that can be consumed from both .NET Core projects and .NET 4.5 projects:

    SharedLibrary\project.json

    "dependencies": { },
    "frameworks": {
      "net45": { },
      "netstandard1.1": {
        "dependencies": {
          "NETStandard.Library": "1.6.0"
        }
      }
    },
    "version": "1.0.0"
    

    A consuming (.NET Core) library in the same solution references it like this:

    "dependencies": {
      "SharedLibrary": {
        "target": "project",
        "version": "1.0.0"
      }
    },
    "frameworks": {
      "netstandard1.1": { }
      }
    }
    

    A consuming .NET 4.5 project using project.json would look the same with the exception of net45 in the frameworks section. Installing in a csproj-based .NET 4.5 project works too, if a NuGet package for SharedLibrary is produced.

    According to the .NET Platform Standard docs, simply targeting netstandard1.1 should allow the shared library to be installed in .NET 4.5+ projects as well. I've run into strange issues with that, but it may have been the result of beta tooling.

提交回复
热议问题