Brightspace / rules_csharp

Bazel rules for C#
Apache License 2.0
8 stars 5 forks source link

Wire up .NET Standard 2.0 without shortcuts #58

Closed j3parker closed 5 years ago

j3parker commented 5 years ago

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.