Re: Open visual studio command line for build

2012-12-09 Thread bearrito
, Richard J wrote: > > MSTest > > It’s part of VS. > > > > *From:* jenkins...@googlegroups.com [mailto: > jenkins...@googlegroups.com ] *On Behalf Of *bearrito > *Sent:* Tuesday, December 04, 2012 4:05 PM > *To:* jenkins...@googlegroups.com > *Subject:* Re: Open

RE: Open visual studio command line for build

2012-12-04 Thread Richard J Otter
MSTest It’s part of VS. From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of bearrito Sent: Tuesday, December 04, 2012 4:05 PM To: jenkinsci-users@googlegroups.com Subject: Re: Open visual studio command line for build What tool are you using

Re: Open visual studio command line for build

2012-12-04 Thread bearrito
a full VS install, please let me know. > > > > > > *From:* jenkins...@googlegroups.com [mailto: > jenkins...@googlegroups.com ] *On Behalf Of *bearrito > *Sent:* Monday, December 03, 2012 1:03 PM > *To:* jenkins...@googlegroups.com > *Subject:* Re: Open visual stu

RE: Open visual studio command line for build

2012-12-03 Thread Richard Otter
: jenkinsci-users@googlegroups.com Subject: Re: Open visual studio command line for build There isn't anything that can be accomplished in VS that can't be accomplished in MSBuild. By putting VS on the build server you risk having libraries int he GAC or in ..\Tools\ that aren'

Re: Open visual studio command line for build

2012-12-03 Thread bearrito
There isn't anything that can be accomplished in VS that can't be accomplished in MSBuild. By putting VS on the build server you risk having libraries int he GAC or in ..\Tools\ that aren't available on other machines. -b On Friday, November 30, 2012 2:53:39 AM UTC-5, Vineet Hada wrote: > > Be

Re: Open visual studio command line for build

2012-11-30 Thread Richard J
Visual Studio installation always create an env varialble that points to the folder with the bat file- Most of my jobs have the lines- rem Set up Visual Studio 2010 environment for msbuild call "%VS100COMNTOOLS%vsvars32.bat" > NUL: On Thursday, November 29, 2012 7:27:29 PM UTC-8, Vine

Re: Open visual studio command line for build

2012-11-30 Thread B.Latinville
Hi, Yes this is working we're using it. Just put in your batch file before calling the msbuild: call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" msbuild Tested with visual 2010 & 2011. Of course path to vcvarsall.bat has match your visual installation. B

Re: Open visual studio command line for build

2012-11-29 Thread Benjamin Lau
I think you need to do something like what is mentioned in this stackoverflow post; http://stackoverflow.com/questions/762539/how-do-i-write-a-build-batch-script-that-runs-vcvars32-bat-and-then-continues-w You need to execute the vcvars32.bat script (and it's entirely possible that the name has ch

Re: Open visual studio command line for build

2012-11-29 Thread Vineet Hada
Because there are some environment variables which are set while using vs command line and not available in windows command line. On Nov 30, 2012 5:10 AM, "bearrito" wrote: > Why would you ever want to do that? > > On Thursday, November 29, 2012 10:27:29 PM UTC-5, Vineet Hada wrote: >> >> Hi, >>

Re: Open visual studio command line for build

2012-11-29 Thread bearrito
Why would you ever want to do that? On Thursday, November 29, 2012 10:27:29 PM UTC-5, Vineet Hada wrote: > > Hi, > > Is there a way in jenkins to run a build in visual studio command line > rather then windows command line? > > Thanks & regards, > Vineet >

Open visual studio command line for build

2012-11-29 Thread Vineet Hada
Hi, Is there a way in jenkins to run a build in visual studio command line rather then windows command line? Thanks & regards, Vineet