Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

No devenv file in Microsoft visual Express 10

i am trying to build the google dart project on windows XP.

following the installation documentation, i ran accross a problem. The python script needs to call devenv. The problem is that with Visual 10 Express, i don't have this exe which should be in

C:\\Program Files (x86)\\Microsoft Visual Studio 10.0\\Common7\\IDE  

Where can i get this exe ? Do i need to download a prior version that visual 10 ?

like image 248
djfoxmccloud Avatar asked Oct 19 '11 08:10

djfoxmccloud


People also ask

Where is Visual Studio Devenv?

devenv.exe. config resides in C:\Program Files (x86)\Microsoft Visual Studio X. 0\Common7\IDE by default (it is recommended to create a backup copy before modifying it).

Where is Devenv exe run?

Press windows + r to open run window and then write "regedit" to open your PC registry. Then go to HKEY_LOCAL_MACHINE -> SOFTWARE -> Microsoft -> Windows -> Currentversion -> App Paths -> devenv.exe.

How do I fix Devenv exe error?

Try reinstalling the program to fix this problem. Finding the source of the devenv.exe error is key to properly resolving these errors.

What is the difference between MSBuild and Devenv?

Devenv uses MSBuild to build projects, but MSBuild does not build Visual C++ Projects. If MSBuild comes across a solution that includes Visual C++ projects, it will call VCBuild. If the projects are using C++, then MSBuild is not called.


1 Answers

I had an issue that needed me to edit devenv.exe.config which doesn't exist in VCExpress and learned in the answer that the name of the exe (and of course it's matching .config file) depends on the version of Visual Studio.

In the "complete" versions of VS such as VSPro the executable you're looking for is indeed devenv.exe but in Express it's vcexpress.exe (or the equivalent for your Express version eg vbexpress.exe for Visual Basic Express etc) so it's not so much that Express doesn't include devenv.exe but that it's called something else and presumably not all command line options under devenv.exe will be available or perform the same as v*express.exe.

like image 54
Malorion Avatar answered Oct 08 '22 02:10

Malorion