In #44 I took a short-cut wiring up .NET Standard 2.0 where I only imported netstandard.dll and plugged that in to each of the @net targets directly.
This works but it changes the list of referenced assemblies which is probably not cool (it doesn't match what msbuild does and could be observed at runtime, via reflection).
In #56 @omsmith set up the newer version of .NET Standard in the "right way". Let's do that.
In #44 I took a short-cut wiring up .NET Standard 2.0 where I only imported
netstandard.dll
and plugged that in to each of the@net
targets directly.This works but it changes the list of referenced assemblies which is probably not cool (it doesn't match what msbuild does and could be observed at runtime, via reflection).
In #56 @omsmith set up the newer version of .NET Standard in the "right way". Let's do that.