Team Foundation Build is a server-side component of the Microsoft Visual Studio Application Lifecycle Management suite, used for automated project builds.
1
vote
1answer
331 views
msbuild not working properly with tfs 2010 and importet Microsoft.TeamFoundation.Build.targets
i'm stuck with extending my msbuild project file and tfs 2010. What i want to achieve is to automatically generate the documentation for my source code after the build. I searched the web and found ...
2
votes
1answer
114 views
How can I get unit tests to run as part of a TFS2008 build?
I'm trying to get my continuous integration setup to run my unit tests for me, so I've set
<RunTest>true</RunTest>
And I've setup the tests to auto-discover:
<ItemGroup>
...
0
votes
2answers
74 views
In TeamBuild 2010, is it possible to do Gated Check-ins in a .NET/VB6 build environment?
I'm interested in using the Gated Checkins in my build process however I have .NET code and VB6 code. Will Gated Checkins work with both sets of code?
6
votes
1answer
571 views
how to prevent an Gated Check-In to put the Keyword ***NO_CI*** in the Comment
This Question is related to my Question
Combining “Gated Checkin” and “Continuious Integration” Builds in Team Foundation Server I Posted this Morning
Thanks to @pantelif I know that after a Gated ...
2
votes
2answers
205 views
How can I launch an external process from within TFS 2010 Team Build to compile Visual Basic projects
I'm doing research on doing builds using TFS2010 Team Build. At the moment we are using Nant Scripting to build .NET code as well as launching external processes to build VB6 projects. We are slowly ...
3
votes
1answer
167 views
What combination of BDD and mocking frameworks will work with Team Build gated check-in?
I'm trying to implement BDD/TDD on my team as seamlessly as possible. Gated check-in for Team Build only supports MSTest, and Microsoft Pex and Moles cooperate very nicely. For BDD, I'm most ...
1
vote
0answers
216 views
Test results not shown in summary when no compilation is made
UPDATE AND SUMMARY: I need to (via API/custom activity presume) set a certain build's flavor and Platform during its execution.
I have implemented a workflow (extended from DefaultTemplate.xaml) in ...
2
votes
0answers
500 views
SQL Server database project: Error MSB4018 “SqlDeployTask”
To start I have already referenced the following posts
VS2010 Database project deploy - "SqlDeployTask" task failed unexpectedly, NullReferenceException
...
0
votes
1answer
124 views
teambuilding and deploying a dll (e.g. wpftoolkit.extended.dll)
The app I work on needs to use the wpftoolkit.extended.dll (i.e. no source, no msi/installer, we've only got the dll). So far we've placed the dll in a c:\libs folder on both the dev's laptop and the ...
0
votes
1answer
253 views
How can I diagnose and resolve connectivity issues with a Team Build Server 2008?
I'm trying to set up a new Team Build Server for doing continuous integration, but when trying to run a build, the build fails with:
TFS215085: An error occurred while connecting to the agent ...
1
vote
1answer
166 views
limit the part of the workspace checked out by tfs 2010 build service
I am working in a project where a main branch is set up with several parallel development and release branches. This means a lot of files that are identical or quite similar exist side by side in the ...
2
votes
2answers
314 views
TFS build duration report by agent
I'm trying to build a report to show the relative efficiency of my various build agents and having trouble getting the info I need out of the tool.
What I'd like to have is a simple grid with the ...
0
votes
1answer
566 views
MSDeploy won't accept dynamic path for deploy destination
We're using MSDeploy with a Web Deployment Project to deploy our web site project using TFS Builds (TFS 2010 and VS 2010).
TFS Build sends the built files to a sub-folder of the specified drop ...
4
votes
3answers
1k views
How do I get Team Build 2010 to publish web applications as non-updatable?
I'm trying to switch our build from CruiseControl.NET running a custom .msbuild file to Team Build 2010. The application being compiled is a VS2008 solution with numerous projects, two of which are ...
4
votes
1answer
291 views
TFS 2010: Wrong Build Agent is chosen
I have two configured Build Agents on one Controller:
Default Agent
Default Agent1
I defined a build definition with the following Agent Settings:
Maximum Agent Execution Time: 00:00:00
...
1
vote
1answer
97 views
is there a way to get tfs teambuild's controller (and agent) status from the command line?
is there a way to get tfs 2010 teambuild's controller (and agent) status from the command line? my controllers (have got about 20) keep on having to be restarted (we know why this is) and I'd like a ...
1
vote
1answer
136 views
TFS2010 - capture unittest execution time in team build
It is possible to 'capture' or persist the time it takes per unittest, when running a team build on TFS2010. Ideally saving it to database (like a loadtest can save it to a result store).
Thanks in ...
1
vote
1answer
951 views
How to build multiple projects in a solution, each project with a different target?
I’m working with a VS2010 solution that has multiple projects (normal assemblies, an ASP.NET MVC project, a Windows Azure project, and a SQL project). I am trying to figure out how to set up a TFS ...
0
votes
2answers
1k views
I have to write TFSBuild.Proj file which only run two batch file in sequence. Can anyone please provide me proj file for this?
I have to write TFSBuild.Proj file which only run two batch file in sequence. I just need to call proj file from build definition and proj file will call two batch file in sequience. All the build ...
2
votes
4answers
481 views
How can I code simultaneously with a friend on Visual Studio?
Is there an addon or extension for Visual Studio that will enable me to code C# programs with a fellow programmer simultaneously? Simultaneous as in my friend sees what I am typing, as I am typing it.
...
0
votes
3answers
114 views
tfs2010 teambuild overnight unit tests have stopped completing (due to assertion fail?)
The auto build completes (when 'Disable Tests' is set to true in build definition) but when I enable tests the build doesn't complete.
I'm building as Debug/AnyCpu. I've copy-and-pasted the MSTest ...
1
vote
2answers
532 views
UNC build path in Team build (TFS)
I am pretty new to TFS so I have this problem when I want to set a destination directory to my build.
Every time I launch the build, it dramatically fails and says "couldn't find ...
1
vote
1answer
151 views
TypeMock Isolator and TFS2010 team build
Can anyone point me at a decent walkthrough regarding getting Typemock 6.2 to play nice with TFS workflow? I've tried to follow the Release Note.doc document, but it just doesn't sense. Note I'm ...
2
votes
1answer
2k views
How to call msbuild from a batch file from msbuild from team build?
I'm using Team Build (2010) to call an msbuild script with an Exec task that calls a batch file that in turn calls msbuild. Like this:
<Exec Command="BatchFileThatCallsMSBuild.bat" />
Of ...
3
votes
0answers
219 views
Pex error during the team build ( TFS 2010 Build )
We have been using pex and moles for unitest with TFS2010. Lately the pex and moles started to crash randomly during the test run. We couldn't reproduce this error on developer machine. Crash only ...
1
vote
1answer
267 views
Guiding a “build” through the development, build, and deploy process
Problem
Using TFS--specifically Team Build--I am trying to come up with a strategy for building and deploying several web applications. I'm struggling with defining how exactly I want to perform ...
0
votes
2answers
891 views
TFS 2010 Team Build Error
I get the following TFS Team Build Error:
Could not find a part of the path 'E:\Builds\17\NextGenIssueTracker\
NGIT-2011Updates\Binaries\QA\_PublishedWebsites\NGIT.Test.ClientProxy_Package\
...
1
vote
1answer
146 views
Setting up a build definition where the source relies on third party assemblies?
My structure for TFS is such:
{Main TFS Project}
3rd Party Assemblies
Development
Source
Integration
Source
I am using continuous integration for my development ...
2
votes
1answer
217 views
Changing deployment project on TFS2010 build
The solution I'm building contains a whole lot of projects. One of them, Web, is the front end web site, and is being built and deployed to the QA server by default when a QA build is run. I have ...
0
votes
1answer
237 views
TFS - Good practice - more users at one station
We have one perplexity about current situation with TFS. There are 3 branches: Develop, Main, Production. Also, we have separate station where we are doing versions build and at that station is mapped ...
3
votes
1answer
3k views
Run deployment script from TFS build workflow on remote system using MSTest agent only
My Question: How can I run a deployment script from the TFS 2010 build template on a remote system that has only a MSTest agent running?
I know this can be done by activating the Deployment section ...
25
votes
2answers
2k views
How do I deploy using MSDeploy in Team Build 2010 using the WMSVC service and NTLM authentication?
I am trying to deploy using Team Build 2010 to a Windows Server 2008 R2 web server. My build server agent is setup to run under a Windows domain account. I have successfully given this domain account ...
1
vote
0answers
199 views
TFS Team build database build fails intermittently with missing dbschema reference TSD01236
I have a team build that is building a database project. The build has been failing intermittently for a while. Several of the projects build successfully but the "main" project in the solution fails ...
7
votes
1answer
2k views
VS2010: Exclude a project from build
I have a solution that has a wcf service that connects to SQl server. When I am offline I have another service that I use for development and testing that stores to in memory storage. I would like to ...
5
votes
1answer
838 views
TFS 2010 API - Get work items from merge
I need to send an email on completion of a build in TFS 2010 which details the work items associated with check-ins that have been compiled as part of this build. This works no problem via use of the ...
1
vote
1answer
1k views
TFS Team Build Log Unit Test Results
We're using TFS 2010 Team Build which automatically runs our unit tests during the build process. If I click on View Log, I can see the list of tests run and each test result (Success/Fail). In the ...
1
vote
1answer
577 views
Team Build workflow can't load my custom activity
I've been searching for alternatives for hours, and I got some really weirdness going on.
So to isolate my problem, I created a very simple code activity that goes inside my xaml template:
using ...
0
votes
3answers
1k views
TFS Build 2010 - Minify JS/CSS before deployment
I've got hold of the Ajax minifier in order to minify some JS and CSS files as part of a build/package/deploy process. It's a great tool and does exactly what we need. However, integrating this into ...
1
vote
2answers
286 views
From TFS build workflow, how to open a source control file without downloading it
I'm using TFS 2010 and Team Build 2010 to automate building a C++ project for embedded platform (TI compiler).
I'm want to customize my build version number by reading a file that is under source ...
1
vote
2answers
610 views
tfsdeployer continous build
We have a tfs 2010 setup with some deployment machines running tfs deployer to automate the deployment of our builds.
I would like to make a sort of "continous deploy" to one of the deployment ...
1
vote
2answers
514 views
integrate dotCover with TFS
Is there a tutorial somehwere or can somebody explain how to integrate dotCover with TFS? I want to run dotCover (probably the console runner?) as part of the team build process and would like to ...
8
votes
3answers
556 views
TFS Automated Build Strategy Questions
I'm new to Team Foundation Server, and I'm currently working on setting up an automated build strategy for my project. One bit of confusion I'm having is how to setup automated builds that match our ...
1
vote
1answer
482 views
Deploying Web Applications using Team Build and Web Deploy
So, here is the deal. In web app project settings I configured a deployment package which includes all content files along with IIS settings for the site & app pool. Now, when i go to Team Build ...
0
votes
1answer
224 views
One Build - multiple outputs (64/32 Bit )
One of projects in our solution references a third party .NET C++ assembly which exists as 64 and 32 bit version. As we wanna provide our application for 32 & 64 bit systems we currently start two ...
2
votes
2answers
535 views
Is there are any tutorial of how to build software with TFS
I have just started using TFS2010 as a source control, moving away from VSS. So the next step will be build. Is there are any handy tutorial on how to do that? Currently we are using Visual Studio ...
0
votes
1answer
355 views
Deploy a Self Hosted WCF Service with TFS 2010 Build?
I have a console app that runs a self hosted WCF Data Service.
I have it auto building just fine. But now I want to take the latest build and move it to my Dev Machine and run it.
Something like ...
2
votes
1answer
891 views
Capture output of regsvr32 in an InvokeProcess TF Workflow Activity
I have a build process setup to build a managed solution using team build. This solution requires an unmanaged component be registered with the server before we build the solution as we interface with ...
1
vote
1answer
163 views
Is there a way to parametrize 'Workspace' in Team Build 2010 for different branches?
Good morning'
Team Foundation Server 2010 question.
Do I need to create a Build Definition for every branch I have ?
Is there a way to parametrize 'Workspace' in Team Build 2010 for different ...
0
votes
1answer
1k views
msbuild wix proj file
I have a current build using teambuild/msbuild that I need to integrate a wix compilation into.
The Wix project is not part of the solution that is being built instead it lives with the various tools ...
0
votes
1answer
201 views
team build target not executed
I have a tfs 2008 build that I need to add WiX compliation to.
Currently the build executes and compiles and copies all output to a drops location in the following target
<Target ...

