0

I'm trying to install squirrel.Windows for auto update of my application but getting this error

'SharpCompress' already has a dependency defined for 'NETStandard.Library'.

enter image description here

In using VS2012. What should I do?

riQQ
  • 9,878
  • 7
  • 49
  • 66
Vic
  • 457
  • 1
  • 6
  • 23
  • 1
    I'm guessing that you have a versioning mismatch. Sorry I cn't help but you might want to update all of your nugets and hopefully match them up. – kenny May 22 '19 at 12:03
  • maybe helpful https://stackoverflow.com/a/7777319/3225 – kenny May 22 '19 at 12:05
  • Try to use a newer version of Visual Studio. – mm8 May 22 '19 at 13:26
  • What's the type of your app and targeted framework? (e.g. WPF App targeting .NET framework 4.7.2) – Jan Paolo Go May 22 '19 at 13:44
  • @kenny Sorry I did not notice that there are who answered in my query. I already fix by updating accidentally my nugets. Can you move your comment into answer so i can accept us answer so other will know if they have same problem. – Vic Jun 17 '19 at 00:49
  • @Vic done, hopefully that helps somebody. – kenny Jun 18 '19 at 11:37

1 Answers1

1

My comment to try this suggestion moved to an answer on request of the OP.

" I'm guessing that you have a versioning mismatch. Sorry I cn't help but you might want to update all of your nugets and hopefully match them up."

Or

" maybe helpful stackoverflow.com/a/7777319/3225 "

answer of this date copied here.

You should be able to force an exact version with brackets:

Full info on the formats you can use are on the NuGet site, here:

http://docs.nuget.org/docs/reference/version-range-specification

kenny
  • 21,522
  • 8
  • 49
  • 87