adamreeve / semver.net

Semantic versioning for .NET
MIT License
117 stars 22 forks source link

new version requires lots of dependencies on .net 4.5 #20

Closed xaviergonz closed 8 years ago

xaviergonz commented 8 years ago

when trying to update to the new version on nuget for a project using 4.5 it warned me that it wanted to install lots of extra dependencies due to a dependency with the .net library. is this dependency really needed under .net 4.5? could it be removed?

adamreeve commented 8 years ago

I can look into this later but @lvermeulen made this change and will probably have a better idea what's going on here?

Is this the NETStandard.Library dependency? From this stack overflow answer, it looks like the dependency can be framework specific: http://stackoverflow.com/a/38229215

xaviergonz commented 8 years ago

It is due to NETStandard.Library (>= 1.6.0) Which depends and tries to install around 40 System.* packages and Microsoft.NETCore.Platforms.1.0.1 and Microsoft.Win32.Primitives.4.0.1

adamreeve commented 8 years ago

@xaviergonz, this should be fixed if you try version 0.7.4. I haven't been able to test the .NET 4.5 version so let me know if you have any problems.

xaviergonz commented 8 years ago

works! ty