Visual Studio is an integrated development environment (IDE) from Microsoft. It supports many different programming languages.
3
votes
2answers
186 views
+50
Profile a c++ console application with Visual Studio 2012
I have a simple (not so simple) console application in c++. I would like to profile this application, but when I try to:
DEBUG > Start Performance Analysis
An error occurs: "No launchable ...
3
votes
2answers
131 views
+50
Soap Request in C#
Ive got a soap request ive written in http & javascript but i cannot seem to convert it into C#
Original: (Works)
<button onclick="doStuff()" type="submit">Send</button>
...
7
votes
1answer
119 views
+100
What's the industry standard way to organize Visual Studio projects and code for .NET Cross-platform development
I have a rather large solution of C# projects in Visual Studio. I want to port some of those projects to work in MONO and to run say on a MAC. Of course some things don't work and some things I don't ...
0
votes
1answer
13 views
+50
How to get EnvDTE.Command from CommandBarButton in Visual Studio 2012
I'm trying to find all enabled resharper Commands via the menus. I can find all the menu items using the following code. However I cannot find how to get the actual command from the DTE commands ...
0
votes
1answer
53 views
+100
Can I create a custom TestContext timer for UnitTest/LoadTest in Visual Studio?
A few of my UnitTests have a Sleep that is defined in a loop. I want to profile not only each iteration of the test, but the overall time for all iterations, in order to show any non linear scaling. ...
2
votes
1answer
65 views
+50
Issue about XML summary comments in VBNET
Intellisense is not showing my parameter names in blue color like I saw in other xml comments from 3rd party projects where Intellisense prints all the information, this is what I see:
What ...
1
vote
3answers
103 views
+100
run vs2005 c++ project in later version of visual studio
I have a C++/CLI project that was created in VS2005. I'm hoping to run this in VS2010 (or 2012) as that is my main IDE and I need to modify some things in the C++/CLI project as well and its ...