Hi,
I've kinda problem with using Common.Logging.Core under .Net Framework 4.6.2. This package has
a dependency on Microsoft.CSharp package for .NetStandard1.0, package manager installs that for .NetStandard and all compatible frameworks. However, it looks unnecessary under .Net Framework 4.6.2 beyond that I have some problems with supporting that dependency using CI.
I've made some tests with Common.Logging.Core.nuspec, and adding
<group targetFramework="net462"/> resolves my problem, but specifying empty group for each version of .NET Framework does not sound good.
Hi, I've kinda problem with using Common.Logging.Core under .Net Framework 4.6.2. This package has a dependency on Microsoft.CSharp package for .NetStandard1.0, package manager installs that for .NetStandard and all compatible frameworks. However, it looks unnecessary under .Net Framework 4.6.2 beyond that I have some problems with supporting that dependency using CI.
I've made some tests with Common.Logging.Core.nuspec, and adding
<group targetFramework="net462"/>
resolves my problem, but specifying empty group for each version of .NET Framework does not sound good.Maybe there is a better solution?