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

“Unable to find manifest signing certificate in the certificate store” – even when add new key

I cannot build projects with a strong name key signing – the message in the title always comes up. Yes the project was initially copied over from another machine. However even if I add a new key via the Signing tab in Project Properties, this error is still shown. I have tried running Visual Studio … Read more

Visual Studio 2010 – C++ project – remove *.sdf file

I would like to know if I can safely delete the sdf file that stores information for Visual Studios Intellisense – is it going to be rebuilt the next time that I open the solution? Do I lose anything by doing so? Is it possible to break the solution this way? The motivation to do … Read more

Visual Studio Disabling Missing XML Comment Warning

I have a project with over 500 Missing XML Comment warnings. I know I can remove the XML Comment feature, or paste empty comment snippets everywhere, but I’d prefer a generic solution where I can make one change that disables all warnings of this type. What I do just now is putting ///<Summary> /// ///</Summary> … Read more

Visual Studio Clicking Find Results Opens Code in Wrong Window

I’m using Visual Studio 2010 and when I do a “Find in Files” the results are returned to the “Find Results 1” window which is docked below my code editor window. Before, I would double click on one of the results in the Find Results window and the file I clicked on would open in … Read more

IIS Express Windows Authentication

I’m trying to use IIS Express with VS2010 to host a silverlight application. I modified my applicationhost.config file to allow for modification of the proper configuration settings. I have the following in my web.config: <location path=””> <system.webServer> <security> <authentication> <anonymousAuthentication enabled=”false” /> <windowsAuthentication enabled=”true” /> </authentication> </security> </system.webServer> </location> I am not being authenticated and … Read more