Is it possible to reference a Shared project (.shrpoj) from a .Net core project (.xproj)?
I can't see a way, but I could be missing something.
Update
In case the link below stops working:
The alternative to shproj in .net core world is to add a compile
section to the buildOptions
section of the project.json
file.
For example:
"buildOptions": {
"compile": {
"include": [
"../../shared/**/*.cs"
]
}
}