Re: MSBuild Visual Studio

2014-03-13 Thread Sébastien Lachance
Hello, I ran into the same problem as you. I'm old enough that I play with DOS short path when I was teenager that he saved me here!! The solution, use this path: C:\PROGRA~2\MSBuild\12.0\Bin\MSBuild.exe ArchieCoder On Wednesday, 19 February 2014 11:01:12 UTC-5, Jmata wrote: > Hello Guys, >

RE: MSBuild Visual Studio

2014-02-19 Thread David Aldrich
Hi You need to specify the path to msbuild. The plugin does not do that for you AFAIK. We just use a Windows batch command build step and do: %MSBUILD% MSVC\mysln.sln /p:Configuration="Release" /p:useenv=true /flp:logfile=MyOutput.log;verbosity=diagnostic where: MSBUILD="C:\\Windows\\Microso

Re: MSBuild Visual Studio

2014-02-19 Thread Mark Waite
You could add a build step which executes a Windows batch to echo %PATH%. I suspect that the PATH (or other environment) setting is not what you want when running that job. On Wed, Feb 19, 2014 at 9:01 AM, Jmata wrote: > Hello Guys, > Im running into a small issue in regards to the MSBuild Plu