VahidN / EPPlus.Core

EPPlus.Core is an unofficial port of the EPPlus library to .NET Core
GNU Lesser General Public License v3.0
370 stars 93 forks source link

No need to define net45 and net46 frameworks. #10

Closed StefH closed 7 years ago

StefH commented 7 years ago

<TargetFrameworks>net40;net45;net46;netstandard1.3</TargetFrameworks>

can be changed into

<TargetFrameworks>net40;netstandard1.3</TargetFrameworks>

Always target only the lowest framework which will work.

And is netstandard1.3 the lowest you can go?

VahidN commented 7 years ago
StefH commented 7 years ago

When someone creates a net45 project, your library can be easily used if it targets net40 (nuget dependencies work that work).

For referenence, take a look at some common projects like newtonsoft.json