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...
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.