Can I get a “sometimes portable” class library project to load in Visual Studio Express?

David Kean’s comment here gave me the answer I’m using for the moment: or remove the <ProjectTypeGuid> element entirely – this will opt you of “portable” enhancements, such as a UI for changing the target framework, etc I’ve tried that, and it works like a dream. On machines which have everything appropriately installed, you can … Read more

How to switch between debug and release in Visual C# 2010 Express?

Enable the Tools → Settings → Expert Settings menu option Go to Tools → Options In the dialog box, check Show All Settings option in the bottom left. In the above dialog, now choose Projects and Solutions → General. Check the option Show advanced build configurations. Click OK. You should be able to see the … Read more

What reference do I need to use Microsoft.Office.Interop.Excel in .NET?

Update (thanks user2347528) These assemblies are available as NuGet packages, which is much easier than my original answer. You can install by either right clicking on References in your project and selecting Manage NuGet packages… and searching for one of the packages listed below, or install using the Package Manager Console: PM> Install-Package Microsoft.Office.Interop.Excel Microsoft.Office.Interop.Excel … Read more

What is “missing” in the Visual Studio 2008 Express Editions?

The major areas where Visual Studio Express lacks features compared to Visual Studio Professional: No add-ins/macros Some Win32 tools missing No Team Explorer support Limited refactoring support Debugging is much more limited (particularly problematic for server development is no remote debugging) Lack of support for setup projects No report creation tools No Office development support … Read more

How to compile a 64-bit application using Visual C++ 2010 Express?

Here are step by step instructions: Download and install the Windows Software Development Kit version 7.1. Visual C++ 2010 Express does not include a 64 bit compiler, but the SDK does. A link to the SDK: http://msdn.microsoft.com/en-us/windowsserver/bb980924.aspx Change your project configuration. Go to Properties of your project. On the top of the dialog box there … Read more

Found conflicts between different versions of the same dependent assembly that could not be resolved

eta: There’s a killer article on this stuff by SO’s own @Nick Craver that you should read While the other responses say this, they don’t make it explicit, so I will…. On VS2013.2, to actually trigger the emission of the cited information, you need to not read the message, which says: C:\Program Files (x86)\MSBuild\12.0\bin\Microsoft.Common.CurrentVersion.targets(1697,5): warning … Read more