Questions tagged [devenv]

DevEnv (or DevEnv.exe) is the file name of the main executable of Microsoft Visual Studio.

DevEnv (or DevEnv.exe) is the file name of the main executable of Microsoft Visual Studio.

Use this tag for questions related to the development environment, such as questions about Visual Studio's Build Configuration Management, bugs in code that are related to running inside Visual Studio, or questions about Visual Studio Plugin development.

224 questions
0
votes
1 answer

How to set MSBuild to take compilation or build order from solution file

We have set the parallel execution count to 1 so that all the projects will build one after other.In the Visual Studio settings. With below command from Devenv.exe we are able to compile the solution correctly. call vcvarsall.bat x86_amd64 devenv…
encrypted name
  • 149
  • 3
  • 17
0
votes
1 answer

VS2017 command line build issue

I have installed both VS2008 and VS2017 on same machine. During test I found that if I set VS2018 build environment firstly by command: %VS90COMNTOOLS%vsvars32.bat, then reset to VS2017 environment by command: %VS150COMNTOOLS%VsDevCmd.bat. The reset…
Kerwen
  • 516
  • 5
  • 22
0
votes
1 answer

Visual Studio and IIS Express randomly stops working

I have been using this machine for development since a year and its a brand new one. Now from 2-3 days my visual studio stops working while I am running my asp.net MVC application and restarts. Sometimes IIS Express stops working and even the…
Samra
  • 1,815
  • 4
  • 35
  • 71
0
votes
1 answer

Undefined remote host when running devenv on Visual Studio for Linux project from jenkins

I have a Visual Studio for Linux project. As myself, I can build it fine using devenv from the command line. However, when I try to run the same command from a Jenkins build, I get the error: There are not remote machines configured for remote…
0
votes
1 answer

Pass commandline arguments argv using devenv (C++) in VS2013

I'm trying to use devenv to pass commandline arguments (argv) for my C++ code. (VS2013) FOr example, myEXE.exe -log "c:\logs\inside\a.txt" -i - compplete - list if i use VS solution, I can pass CMD line arguments "-i - compplete - list"…
codeLover
  • 3,720
  • 10
  • 65
  • 121
0
votes
0 answers

How can we scan C/C++ code using devenv in fortify?

I have been using devenv to scan C++ Code in fortify. For this scan, i have made use of solution file. But this solution file doesnt contain the entire source code to be scanned. So to include the whole source code of C++, is there any way to scan…
0
votes
1 answer

lower case not working on environment variable

Why can't you lower case a Node.js environment variable? process.env.someEnvironmentVariable.toLowerCase() process.env.someEnvironmentVariable.toString().toLowerCase() not of these work this however does but is there a cleaner way to do…
Dark Matter
  • 29
  • 2
  • 9
0
votes
1 answer

How to build .rptproj (SSRS project) without using devenv.com?

I need to build the SSRS project (.rptproj) without using devenv utility. I have used devenv to build from command line but can not use the same on build server as it is not having Visual Studio. Is there any way we can achieve this ?
0
votes
0 answers

Building solution from command line and error: "Failed to write to log file"

I have a strange error. My solution (C++) has about 360 projects. When I build it using Visual Studio 2012, everything works fine. But when I build it using command line and devenv.com tool, I get an error MOST of times: "Failed to write to log file…
Adam Jachocki
  • 1,897
  • 1
  • 12
  • 28
0
votes
1 answer

How to refer from eclipse to a WebSphere server when the profile itself isn't in the WebSphere folder?

I have a two level problem: I have websphere installed. I am working with eclipse and I want to configure a new server which refers to a websphere server. However, I want the profile of the server (along with my server-side application, of course)…
ComputeALot
  • 71
  • 1
  • 2
0
votes
1 answer

Visual Studio Community 2015 won't start

When I try to start it. The loading screen flash by in 1 millisecond then dissapear. Iv'e tried the devenv.exe /Setup solution, but devenv.exe won't start either. Don't know what to do! I think it has something with to do with devenv.exe. Because…
user3228992
  • 1,373
  • 1
  • 16
  • 31
0
votes
1 answer

Microsoft Visual Studio 2008: devenv.exe ignores /useenv option

in Microsoft Visual Studio 2008, I want to set C++ directories (includes, libraries, etc.) for a solution (*.sln) from command line. Until Visual Studio 2003, I've successfully relied upon /useenv option of devenv.exe, started from command line. …
Eleno
  • 2,864
  • 3
  • 33
  • 39
0
votes
1 answer

Build is started and terminated immediately using devenv /deploy

I am using devenv command line switches to build and deploy a project. Build is getting started and the project is never deployed. I am using the following line of code devenv "%pathtosolution%" /deploy Debug /project "%relativepathtoprojectfile%"…
Sarat
  • 53
  • 6
0
votes
1 answer

TeamCity can't build vdproj - HRESULT = '8000000A'

I'm using TeamCity to build nightly a .vdproj installer. I'm using this configuration in TeamCity v10: but I got this error message ERROR: An error occurred while validating. HRESULT = '8000000A' I already put into regedit the DWORD…
Krusty
  • 955
  • 1
  • 12
  • 26
0
votes
1 answer

change microsoft compiler from vc14 to vc12 in devenv.exe

I compile command line most of my applications using msvc12's vsvarsall.bat and setting the platform. Now I have a project that comes with a visual studio solution and it compiles with msvc14. To keep compatability I would like to compile with…