MDbg not found in VS 2012 Express for Windows Desktop - visual-studio-2012

Previously I used VS 2010 Professional that I got from Dreamspark and I could use cmd line MDbg out of the box. But in VS 2012 there is no 'MDbg.exe' in the installation directory. Is it excluded from the Express edition, if so then is there any standalone installer available?

MDbg.exe is part of the .NET SDK which can be downloaded separately from Visual Studio:
http://www.microsoft.com/en-us/download/details.aspx?displaylang=en&id=8279

Related

Microsoft Visual Studio Express 2012

I recently developed a program in VB.net with Access Database. And I want to create setup file of it.
I'd searched on "How to create setup file". And I got that using "Deployment and Installing" we can. After that I'd install "InstallShield". But that option does not appear inside Visual Studio.
I'm using "VS Express 2012 for Windows Desktop".
Visual Studio Express 2012 does not support extensions, as such 3rd party products will not be able to provide additional functionality. The InstallShield LE page on MSDN spells this out clearly:
InstallShield Limited Edition is free for users of all Visual Studio editions except the Express editions.
Source: https://msdn.microsoft.com/en-us/library/dn531020.aspx
Your options are:
Install Visual Studio 2013 Community Edition (if you are allowed by the license) or buy Visual Studio Professional. These can be extended with either Wix or the Visual Studio Setup Package extension or Installshield.
Create a click-once installer
Use an installation system that is independent of Visual Studio and have it pick up your project output from a specific directory. You would have to author your installer outside of Visual Studio, e.g.:
NSIS
Wix and Wix Editor

Microsoft Visual Studio 2012 new mobile phone project

I'm new in Visual Studio. Installed Microsoft Visual Studio Professional 2012 (Version 11.0.50727.1 RTMREL).
Need to create windows mobile 6.5 application. When I go to File > New > Project I cannot find Windows Mobile in the list of templates. I tried installing Windows Mobile 6.5 Development Tool Kit still doesn't show up. Any ideas?
Yes, you need either Visual Studio 2005 or 2008 and better than the Express edition.
Then you need to install the Windows Mobile 6 SDK or the Windows Mobile 6.5.3 DTK.
In Visual Studio 2005/2008 you will see SmartDevice in the list of Project Templates when you start a new project.
A trial of VS2008 can be downloaded at http://downloadfreesoftwaresforpc.blogspot.de/2012/05/visual-studio-2008-professional-edition.html (http://download.microsoft.com/download/8/1/d/81d3f35e-fa03-485b-953b-ff952e402520/VS2008ProEdition90dayTrialENUX1435622.iso)
You can upgrade the trial following MSDN at http://msdn.microsoft.com/en-us/library/cc442563%28v=vs.90%29.aspx
You'll need a copy of Visual Studio 2008 to do development for Windows Mobile\Windows Embedded Handheld. Visual Studio 2010 and later only support the new "Windows Phone" OS.

Create an installer from Visual Studio 2012 to run an application on another PC

I wrote an application with Visual Studio EXPRESS 2012 on a Windows 7 PC for research purposes. Now I want to run it on another PC (with Windows 8), which will be used by a medical group. Now my question is: HOW?
InstallShield LE doesn't work on Express... I tried to install Visual studio Express 2012 on the other PC (obviously the win8 version) using absolutely the SAME version number: 11.0.60610.01 Update 3; but it gives me an error importing the project and says that my project is "not compatible". What should I do?
As Wix cannot integrate directly into Visual Studio Express, you can install the Visual Studio Isolated Shell Environment along side the express edition.
Or you can use a stand alone Wix IDE like WixEdit to author the installer. I suspect that you've downloaded the wrong Visual Studio Express version.
The Visual Studio Express 2012 for Windows 8 is meant to build Windows 8 Store Apps, you probably need the Visual Studio Express 2012 for Desktop Applications version instead, even when building on Windows 8, the name is a bit confusing, I agree.
See also: https://stackoverflow.com/a/14676758/736079

opening .ccproj file in VS 2012 Express for web

how can i open solution which is being developed using trial version of Visual Studio 2012 Professional in Visual Studio 2012 Express for web?
When i try to do so, i get an error stating the solution you are trying to open is incompatible with this version of the application. Open this solution with another version which supports this type of solution.
Visual Studio 2012 Express For Web wouldn't do alone, in order to open an Azure project with it you have to install the Azure SDK after you have installed the VS.

Does Visual Studio 2012 include the full Windows SDK

If I've installed the Visual Studio 2012, do I need to install the Windows SDK, or are all tools / parts of the SDK included as part of the Visual Studio installation.
The visual studio 2012 installer does not contain the full Windows SDK or Visual Studio 2012 SDK. these need to be installed separately.
Depends on which version of VS 2012 you have installed. Professional version and above include the Windows 8 SDK, so unless you are planning to develop applications for Windows XP or earlier versions of the OS, there is no need to install the SDK separately - you would already have it.
However, if you have installed VS 2012 Express, I would suggest referring to on-line documentation for clarification on this issue.
See this post for more information:
http://blogs.msdn.com/b/chuckw/archive/2012/03/22/where-is-the-directx-sdk.aspx
"The DirectX SDK is now part of the Windows 8.0 SDK."
"The Windows SDK for Windows 8 (aka Windows 8.0 SDK) is included with Visual Studio 2012, and is also available as a standalone package for use with Visual Studio 2010."

Resources