Running a VS2003 Build
here interesting problem. inside of our team foundation server, have few 2003 projects. these projects have yet me converted , don’t know when will. though not invoke 2003 build inside of script. problem every time run script, ends in infinite loop , never seems end. doing wrong?
<?xml version="1.0" encoding="utf-8"?>
<project defaulttargets="desktopbuild" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<import project="$(msbuildextensionspath)\microsoft\visualstudio\v8.0\teambuild\microsoft.teamfoundation.build.targets" />
<projectextensions>
<description></description>
<buildmachine>sdlc</buildmachine>
</projectextensions>
<propertygroup>
<teamproject>development_code</teamproject>
<builddirectorypath>f:\build_management\team_build</builddirectorypath>
<droplocation>\\build\releases</droplocation>
<runtest>false</runtest>
<workitemfieldvalues>symptom=build break;steps reproduce=start build using team build</workitemfieldvalues>
<runcodeanalysis>never</runcodeanalysis>
<updateassociatedworkitems>true</updateassociatedworkitems>
<workitemtitle>build failure in build:</workitemtitle>
<descriptiontext>this work item created team build on build failure.</descriptiontext>
<buildlogtext>the build log file at:</buildlogtext>
<errorwarninglogtext>the errors/warnings log file at:</errorwarninglogtext>
<!-- compile 2003 -->
<msvs7path>c:\program files\microsoft visual studio .net 2003\common7\ide</msvs7path>
</propertygroup>
<!-- <itemgroup>
<solutiontobuild include="$(solutionroot)\wsecurity.dino.sln" />
<configurationtobuild include="release|win32">
<flavortobuild>release</flavortobuild>
<platformtobuild>win32</platformtobuild>
</configurationtobuild>
</itemgroup> -->
<target name="afterdropbuild">
<exec command=""$(msvs7path)\devenv.exe" /rebuild release /out "$(droplocation)\$(buildnumber)\vs2k3build.log" "$(solutionroot)\wsecurity.dino.sln"" />
</target>
</project>
hi,
i don't think made wrong cause have same problem specific (mobile device projects) build type wich launch devenv (vs2005) exec command.
the workaround have found set timeout exec command.
Archived Forums V > Team Foundation Server - Build and release management
Comments
Post a Comment