Will Web Deployment Projects still be available in Visual Studio 2012?

Web Deployment Projects will NOT be available in VS2012. Instead we will focus on bringing first class publishing support for Website projects. You can read more details at http://blogs.msdn.com/b/webdev/archive/2012/08/06/plans-regarding-website-projects-and-web-deployment-projects.aspx. In a nutshell, you will have all the same features that WDP has, but a lot more as well. Also another good thing about this is … Read more

Visual Studio – Error when clicking on Solution -> Properties (Object reference not set to an instance of an object)

Some extensions may cause this. Try disabling extensions and restarting Visual Studio. Quite often error will be gone even if you re-enable extensions after this. There’s a bug report on Microsoft Connect (link). It is marked there as “Closed as External”, but it seems that it may occur randomly with any extension, so would be … Read more

CMake and MsVS-NuGet

EDIT: This answer does not apply to C++ projects. EDIT: As of CMake 3.15, CMake supports referencing Nuget packages with VS_PACKAGE_REFERENCES. Now, this is a much cleaner solution than the work-around proposed earlier below. To add a Nuget package reference to a CMake target, use the package name and package version separated by an _ … Read more