Top "Visual-studio-2010" questions

Visual Studio 2010 is an integrated development environment (IDE) from Microsoft.

Visual Studio 2010 - recommended extensions

What are your recommended extensions for Visual Studio 2010? (Please indicate if its free or not And also its purpose / function …

visual-studio visual-studio-2010
Why am I getting a "Could not find a part of the path" exception?

I am developing website using Visual Studio 2010. I am trying to save a file in a path. It works fine …

c# asp.net visual-studio-2010 filenotfoundexception
Cannot add reference to project because of a circular dependency error

I created 2 dummy projects in my application and named them BAL and DAL. When I build them, they build successfully. …

visual-studio visual-studio-2010 projects-and-solutions circular-dependency
Installing MSBuild 4.0 without Visual Studio 2010

I installed .NET 4.0 and VS 2010 RC on my laptop and MSBuild was automatically installed. I was hoping to build a …

.net visual-studio-2010 msbuild sdk .net-4.0
Configure IIS Express for external access to VS2010 project

I am developing a project in VS2010 and am able to view my site locally via IIS Express. I would …

visual-studio visual-studio-2010 iis-express
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 …

visual-studio-2010 xml-comments
How to compare Lists in Unit Testing

How can this test fail? [TestMethod] public void Get_Code() { var expected = new List<int>(); expected.AddRange(new [] { 100, 400, 200, 900, 2300, 1900 }); …

c# visual-studio-2010 unit-testing mstest
Cannot open include file "d3dx9.h"

Edit: Of course, immediately after working on it for an hour then posting here, I found the stupid mistake... I'm …

visual-studio-2010 directx-9
Finding memory leaks in a C++ application with Visual Studio

In Linux, I have been using valgrind for checking if there are memory leaks in an application. What is the …

c++ visual-studio visual-studio-2010 memory-leaks valgrind