How to make ReSharper re-evaluate its assembly reference highlighting

I am creating a Prism Project Template, and the template works great. But after I create a project with the template some of the files look like this: Despite appearances, everything is just fine. If I do a Rebuild All I see that the solution builds with no errors: But the rebuild all does not … Read more

Visual Studio 2010 always thinks project is out of date, but nothing has changed

I have a very similar problem as described here. I also upgraded a mixed solution of C++/CLI and C# projects from Visual Studio 2008 to Visual Studio 2010. And now in Visual Studio 2010 one C++/CLI project always runs out of date. Even if it has been compiled and linked just before and F5 is hit, the messagebox “The project is … Read more

How do I install a NuGet package into the second project in a solution?

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 … Read more