How do I install a NuGet package into the second p

2019-01-20 21:53发布

I'm currently working on a solution that initially contained one project (My.First.Project.Name). I've installed Castle Windsor by executing:

Install-Package Castle.Windsor

I've just added another project (My.Second.Project.Name) to the solution and want to install Castle Windsor into this project also, but when I run Install-Package Castle.Windsor again, I get the error:

'Castle.Core 2.5.2' already installed
'Castle.Windsor 2.5.2' already installed
My.First.Project.Name already has a reference to 'Castle.Core 2.5.2'
My.First.Project.Name already has a reference to 'Castle.Windsor 2.5.2'

So my question is: How do I persuade the NuGet Package Manager to install the package into the second project?

7条回答
老娘就宠你
2楼-- · 2019-01-20 22:27

If you just need to copy packages from existing project to the new one, just copy and/or modify packages.config file to the new project and run Update-Package -reinstall -Project YourProjectName

查看更多
登录 后发表回答