Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
226 views

Automatically stop Visual C++ 2008 command-line batch builds at first compile error using devenv.exe?

I have a similar question as given in Automatically stop Visual C++ 2008 build at first compile error but specifically for building from the command line with command-lines such as devenv.exe ...
3
votes
3answers
1k views

Build merge module without Devenv from .vdproj

I read quit a few Stackoverflow Questions about building mergemodules via commandline but all of them were accepted when either somebody suggested to use devenv for compilation or use Dark to create ...
2
votes
0answers
36 views

Customizing Auto-Build for multiple C++-Projects

Hy guys, for a project at the university we're faced with the following problem: For coverage analysis purposes we should instrument the code of several C++-Projects, which are automatically build ...
2
votes
1answer
117 views

logger for devenv CruiseControl

Is there any logger for devenv? I have a devenv task in the cruiseControl.net but it doesn't give me any logs. I cannot even see the reason for build failure. I used to use logger in msbuild to view ...
2
votes
3answers
155 views

Can there be any difference between Clean+Rebuild and Clean+Build

I've got a msbuild task in cruiseControl which first Clearn and then Rebuild. Can there be any difference if I change it as Clean and Build (rather than rebuild) ? Rebuild does "Clean + Build" for ...
2
votes
2answers
106 views

Any difference in output binaries when using CruiseControl.net in devenv and msbuild

I am using msbuild to build my C# VS solution. I've got an error with a third party control which needs an user interaction for building. I might be able to get it fixed if I changed cruisecontrol ...
2
votes
0answers
307 views

QualityToolsPackage Failed to Load in Build?

I am using Bamboo [from Altassian] and it uses the devenv.com builder to build solution files. Currently, I seem to be getting a "false" error in my builds - that I've tried to solve by myself but ...
2
votes
2answers
568 views

can build using visual studio ide but cannot build using devenv.com

i'm using VS 2008. I can compile my solution using the IDE successfully. However, when I try to build it using devenv.com, it fails saying that "ERROR: Cannot find outputs of project output group ...
2
votes
2answers
655 views

msbuild slower than devenv

I'm experiencing performance inconsistencies with regards to build duration when building a VS2008 solution file with either devenv or msbuild from command line. My solution contains both C# and C++ ...
2
votes
1answer
372 views

visual studio 2008 can't open project from svn

I am using ankhsvn with my visual studio 2008 and when I tried to open the .sln file I get the following error: The project file "blah blah blah" cannot be opened The project type is not supported by ...
2
votes
4answers
2k views

how do I add preprocessor #define in devenv command line?

Is there a way to add extra preprocessor #define in devenv command line?
2
votes
1answer
780 views

How to generate pdb files for parallel builds?

We are seeking ideas on resolving a problem with linking/pdb generation when running multiple devenv.com using Visual Studio 2005. We are getting the following intermittently errors when doing ...
1
vote
1answer
143 views

An error occurred while validating. HRESULT = '8000000A'

I have been receiving this error for a while when using devenv on an automatic build. I have gone through every website I can find, and the usual answers mention refreshing dependencies (Which I ...
1
vote
1answer
49 views

Visual studio 2008 crashing with VSS 2005

I've installed VSS 2005 and added a VS 2008 project. If I try to open the project by choosing File --> Open Project, then selecting Source Safe on the left and navigating to the either the .sln or ...
1
vote
2answers
278 views

Is there a way for VS2010's devenv.exe /out switch to replace an existing log file?

When building using the Visual Studio 2010 devenv command line, the /out switch will append to the file if it exists. Is there a way to force it to overwrite the file contents instead? I'm trying to ...
1
vote
0answers
34 views

Creating a new Visual Studio solution from the command line

Is there a way I can use devenv to create a new Visual Studio solution from a multi-project template that I made. There are lots of resources on building with the command line, but I can't seem to ...
1
vote
3answers
247 views

devenv and #define

I'm building some projects using cmd devenv. For some projects I want to #define form the command line Is there a way to #define using the cmd and devenv, I don't want to create new configurations
1
vote
2answers
131 views

CruiseControl.NET: Ignore DB projects in a build

After upgrading to VS2010 we have a few .dbproj files that are causing issues in our CI builds. They do nothing except just store SQL files anyway, so I'd like to just ignore them. I'm running ...
1
vote
1answer
416 views

How to specify the platform in devenv build CruiseControl.net

When building with msbuild we can give the platform as below <msbuild> <buildArgs>Platform=x86</buildArgs> </msbuild> Do you know how to speficify the platform if we are ...
1
vote
0answers
356 views

Building vdproj from commandline cause visual studio (devenv) to crash

I use devenv.com to build a sln contain many projects(c# .net and few c++ dlls). Near the end of the build, when it is time to build the vdproj for msi generation, devenv crashes and build is left ...
1
vote
2answers
292 views

Passing MSBuild options when calling devenv

Is there a way to pass command line switches to devenv which are then passed as-is when it calls MSBuild?
1
vote
2answers
650 views

Specifying additional conditional compilation symbols via devenv for a C# solution

I'm trying to pass an additional conditional compilation symbol via devenv (vs2010) on the command line to the C# compiler. I know it can be done for the C++ compiler through the CL environment ...
1
vote
3answers
307 views

How do I build all configurations of a Visual Studio 2008 C++ project on the command line?

I'd like to build all the configurations of a VS 2008 C++ project on the command line. Something like: devenv TheProject.vcproj /build /nologo But this doesn't work because the /build command ...
1
vote
0answers
113 views

ERROR: General packaging failure — When packaging an MSI using devenv.com

I have a Visual studio C# solution for deploying a regression test setup. The solution contains class library, Console Application and deployment (.vdproj) projects. The output of Class Library and ...
1
vote
2answers
165 views

Devenv.exe with /I and whitespacess

I've tried to compile an application with Directx. But this causes an PRJ0030 error for $(). How can I escape critical characters like (,) or blanks. Refering to the cmd I've used ^ but it does not ...
1
vote
4answers
1k views

buildbot C++ build on Windows: use devenv.com, vcbuild.exe, or MSBuild.exe?

My buildbot has been running for 3 years using devenv.com to compile the projects on Windows. Now devenv.com has troubles to build for 64 bits versions: passing the configuration as "Debug|x64" ...
1
vote
2answers
270 views

how to clean one projectfile with devenv?

How can I clean a single vc project file? I tried this: devenv SolutionName.sln /Clean SolnConfigName The\Path\to\the\FileToClean.vcproj but it dosn't work. How can I do it? thanks
1
vote
1answer
352 views

Visual Studio 2008 devenv running application, then leaving ghost

I'm developing a C#/WPF application using Visual Studio. This app uses a com port, then releases it upon exit. I'm using the debugger to run and stop this application often. Sometimes, I get an ...
1
vote
2answers
2k views

How do I export environment variables from the Ant 'exec' task?

I am using Ant under WinXp to build MSVisual c++ projects. To access "devenv.com", being computer-independent, I would like to use the vsvars32.bat script. Unfortunately, it seems that environment ...
1
vote
3answers
322 views

The Command “File.BatchNewTeamProject” is not available in VSTS 2010

I am trying to automate the creation of team projects using a command built into VS 2010 called File.BatchNewTeamProject using a project settings file as an argument, and executing this as a process ...
0
votes
3answers
192 views

Visual Studio 2010 (devenv) Hung Process After Closing

I have problem with Visual Studio 2010 on Windows 7 64-bit. After some time of work VS starts consuming ~50% CPU and UI responding slows down. When I close VS then UI disappear but process stay. When ...
0
votes
1answer
58 views

devenv command line build evironment variable / parameter

I am currently using a script to build my project, the script is something like devenv.exe mySolution.sln /Rebuild "Release|Win32" /Project "my project" This is working out great, and I am hoping ...
0
votes
1answer
75 views

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 ...
0
votes
0answers
89 views

Whats is difference between building a project using VS 2010 IDE and using devenv.exe command line?

I've found out the strange behavior when I tried to build my solution using Microsoft Visual Studio 2010 IDE - after I had clicked menu buttons "Build -> Rebuild Solution" the message box "Object ...
0
votes
0answers
175 views

Compile Setup project with devenv.com - “ERROR: Unable to update the dependencies of the project”

I have a Setup deployment project in VS 2010. The project compiles perfectly with the GUI interface of VS 2010, but any time I trying to compile it via vs cmd (devenv.com) it comes up with this error: ...
0
votes
1answer
110 views

VS2010 : How to run devenv to not parallelize the build

I use devenv.exe to pass it a sln file and use /Rebuild switch, internally the devenv.exe spins up multiple msbuild's. I have a need to run unparalleled build, with only one thread of msbuild. Surely, ...
0
votes
1answer
219 views

Create a development environment for OpenCart

I am creating an e-commerce website using OpenCart and hostgator for hosting. I want to create a development environment with OpenCart installed on it so that I can view changes and edits without ...
0
votes
1answer
203 views

how to call devenv to build some .vcproj with specific building macro in a solution (containing many .vcproj)?

all! There are many vc projects in my solution. i can call devenv.exe xxx.sln to build/rebuild all these projects together. Also i can right-click some specific project and rebuild it. My question: ...
0
votes
1answer
375 views

How can i retrieve devenv.exe path for a vspackage installation?

I'm following this tutorial http://msdn.microsoft.com/en-us/library/bb458038.aspx to create a VsPackage Setup. In the part of the creation of an installer class appears a reference to this location in ...
0
votes
2answers
436 views

How to specify Publish Version in Devenv?

I am totally new in building Visual Studio Project through a script, so feel free to correct me if you feel that my understanding about the process is incorrect. I have a visual studio solution which ...
0
votes
1answer
215 views

devenv command line option for macros and lib file

I am trying to make build using devenv.exe command line and have some preprocessor definitions and lib file to be given with command line. as such one way is to set in proj file c/c++ ---> ...
0
votes
2answers
281 views

How to specify multiple buildtypes in devenv tasks, CruiseControl.net

I want to do Clean and Build in devenv. I just noticed that buildtype flag can have only one item (Clean;Build not allowed). Do you have any idea how to specify multiple BuildTypes? <tasks> ...
0
votes
1answer
185 views

use devenv to build smart Smart Device CAB project with specified configuration

I have a Visual Studio 2008 solution with a Smart Device CAB project. I am working on automating the release process. I am using devenv to build the inf file that I use to build the CAB like this: ...
0
votes
1answer
79 views

Visual Studio Project Installers - Can these just package assemblies and not build them

I am trying to make some modifications to our build processes which ensure that our vdproj files do not execute builds, they just package already build DLL's from a given location. Is there any way ...
0
votes
0answers
344 views

VS2010 - Conditional devenv.exe.config settings per solution

I've hit this problem where I've had to add the NetFx40_LegacySecurityPolicy element to my devenv config. Ie the answer to this question here. I've now got a problem where some of my other solutions ...
0
votes
2answers
180 views

Command line in Visual Studio - how to close popup window?

I have situation like below. I'm running some command and then I get a popup with Y/N answer. Is there a possibility to force answer Yes and automatically close the window through command line?
0
votes
1answer
346 views

Deploying web applications with VS2010's devenv.exe

I'm attempting to use the VS2010 command line utility, devenv.exe, to deploy a web solution, eventually on a bamboo CI server. The problem is, when I use the /deploy parameter, the solution builds, ...
0
votes
1answer
446 views

devenv.com is not a valid win32 application?

Currently, when I attempt to run Visual Studio2010 command line build the solution directly like this D:\SVN\projects\Solution>"c:\program files (x86)\Micro soft Visual Studio ...
0
votes
0answers
237 views

C++ Runtime Error when Debug in VS 2008

I use VS 2008, win xp. Now, when I debug a Winforms app, in a click eventof an button, I get this error: Microsoft Visual C++ Runtime Library Runtime Error! Program: C:\Program files... This ...
0
votes
1answer
89 views

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 ...

1 2