Tagged Questions
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
114 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
153 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
2answers
653 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++ ...
1
vote
1answer
415 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
288 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
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" ...
0
votes
0answers
88 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
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
2answers
280 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
306 views
devenv VS aspnet_compiler
If I use aspnet_compiler to publish an ASP.NET MVC web site, does it do the same tasks that devenv would do? Or is it just pre-compiling to minimize the startup delay?
I.E.
my requirnment is to be ...