When I create a multi-target .NET csproj which targets netstandard1.2, netstandard2.0 and net45, do I have to include both of the netstandard monikers in the section of the .csproj or is it enough to just mention netstandard1.2 (the lower netstandard version)?
Proposal A:
<TargetFrameworks>netstandard1.2;net45</TargetFrameworks>
Proposal B:
<TargetFrameworks>netstandard1.2;netstandard2.0;net45</TargetFrameworks>

