I have a visual studio solution with many projects in it. Among them one of the project is for desktop app too named as ProjDesktop. Also one of the Project ProjWeb web project in ASP.Net MVC 5.
Behaviour expected: I want to install a Nu-Get package to my Web Project (ProjWeb).
Solution Attempted: I made the ProjWeb as start up project and ran below command in Package Manager Console:
Install-Package foolproof -Version 0.9.4518
Issue: Package got installed in ProjDesktop
but I wanted it to get installed to ProjWeb
as I kept that as StartUp Project.
Question:
- How can I target a nu-get package to a particular project? Or is it totally Okey for the package to get installed to another project. And I need to add reference or something?
- Once I install the nu-get package (FoolProof), is there any additional steps required before I start using it. Like manually adding Reference or Something?
P.S: I am a beginner so can someone please guide me here.