3

I have two .csproj projects named A and B under one solution file (.sln), I need to install a custom nuget package of version 1.0 in A and 2,0 in B. Is that possible? I have tried to install-package but it updates the solution. Both of them are now updated to 2.0.

1
  • use console for install package per project Commented Apr 6, 2015 at 6:15

1 Answer 1

1

You can do it using the console instead the manager window,

PM> Install-Package Newtonsoft.Json -Version 6.0.8 

in the other project

PM> Install-Package Newtonsoft.Json -Version 5.0.3 
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.