Hot answers tagged tfs2010
2
The 2012 build agent support the new Unit Test Runner, Lab Management environment, .NET 4.5 building, improvements in CodedUI, capability to trigger tests on a 2012 test agent, 2012 version of Code Analysis, improvements to Code Covrage and many many other things.
The main reason to support 2010 build agents, is to allow you to upgrade TFS from 2010 to 2012 ...
2
You don’t have to programmatically change it. It can be done from IIS.
This is to change the size of attachment to your required value for workItems in TFS 2010 for each collection individually.
You must be a TFS Admin to do this.
Browse to
http://localhost:8080/tfs/<Collection>/WorkItemTracking/v1.0/ConfigurationSettingsService.asmx
You’ll see 3 ...
2
You need TFS 2012 to use Code Reviews:
This feature is only available when running with VS2012 + TFS 2012. If
you connect to a 2010 TFS server with VS 2012 the code review feature
should not show up in the team explorer.
2
Take a look at build number format property for build definitions this is used to generate the build number and in turn the build folder during build and label in sourcecontrol if its enabled, you can modify this manualy to pass desired build number. The mentioned drop folder can be manually given as well. And you can always copy the folder after build by ...
1
Welcome to the world of TFS Workspaces. The files in Solution A are not actually being added to Solution B but in Visual Studio what you are seeing is a list of all the files that are currently checked out in that TFS Workspace on your machine. This behaviour is by design (and actually can be very helpful if you happen to edit some files outside of Visual ...
1
The Microsoft.TeamFoundation.Build.Workflow.Activities.UpdateBuildNumber activity in your build template (e.g. DefaultTemplate.xaml) is what does the work of transforming your build number format string. It takes any of the parameters listed at http://msdn.microsoft.com/en-us/library/vstudio/hh190719%28v=vs.100%29.aspx however, the version (your changeset ...
1
What you have set as an active Build Configuration locally is completely different than the Build configuration on Team Build. Usually Team Build will build in Release mode. You need to look at the configuration of the build and see what "flavor" or "flavors" it is configured to build. If you modify the Build configuration for the flavors set in the Build ...
1
Assemblies are retrieved from TFS source control location defined for controller to tmp folder for Visual Studio and loaded into scope when opening build definition for edit (and probably when you open queue dialog).
You need assemblies in GAC (or VS private assemblies folder) if you are editing template itself, adding xaml template to activity project ...
1
It seems that the TFS PowerTools have a command-line utility tfpt which lets you add a Project Portal for an existing Team Project.
tfpt addprojectportal
A blog post with a bit more info: http://www.doodle.co.uk/Blogs.aspx/2010/06/15/Rebuilding-TFS-Portals
Edit: another post with examples: ...
1
I had someone come to me and ask the same question yesterday, fortunately they had a backup of the TFS Project database (tfs_) so we restored that to another database and I poked around and figured it out (so, if you have a backup then yes, you can recover all the files).
First of all a little info on the tables in the database.
A Shelveset can be ...
1
Since this is first link that pops up with a Google search of "TFS OutDir", I must provide a newer solution. I spent an entire day playing around with OutDir, OutputPath, and overriding them with TeamBuildOutDir. A better solution is to set the MSBuild property GenerateProjectSpecificOutputFolder. It comes with .NET 4.5. More info here: ...
1
It doesn't matter if they were checked out in the old server or in the new one. For such administrative task I use TFS Sidekicks http://www.attrice.info/downloads/index.htm#tfssidekicks2012, which is for free use. You need admin rights to do task like undoing checkouts for other users. In Sidekicks use the Status Sidekick and search for the checkouts you ...
1
You can call an MSBuild script from TFS Build easily. I believe where it asks for solutions to build you can just give it any MSBuild file (don't know if I've ever specified a non-sln file) but if that doesn't work for some reason, you can do a small tweak to the TFS Build Template and use the MSBuild activity to call any MSBuild script you wish.
You can ...
1
To answer your direct question, I believe the answer is no (at least not without some heavy customization).
For me this is never a big concern as I am pretty aggressive about getting my teams to bring errors/warnings down to zero, then enforcing it via TFS Build (/p:TreatWarningsAsErrors=true). This means you should never have to wade through hundreds of ...
1
It could be that the periodical sync from Active Directory to TFS is broken, I found an article that could help you work your way through, it mentions that if the job fails, it sets the sync job to inactive, thus preventing any future updates.
1
Depends on the size of these projects and how often you make changes there, dll references are generaly used for 3rd party libs, if you own common projects are not often changed and/or changed by small/dedicated group of ppl then it may be benificial to treat them the same way, otherwise its better to have project references.
Im not sure why dll references ...
Only top voted, non community-wiki answers of a minimum length are eligible