Hot answers tagged tfs2012
3
I believe the values you're after are;
'Project Server Sync Requested Project GUID' = Microsoft.Sync.ProjSrv.RequestedProjGuid
'Project Server Enterprise Project' = Microsoft.Sync.ProjSrv.ProjectName
Is your team project mapped to a single project plan? If so Microsoft.Sync.ProjSrv.ProjectName will be readonly, you only need to specify it if it is mapped ...
3
In TFS, a team is simply a way of recognizing the team or teams you already have, whether that is one team working on a project, or twenty. TFS turns the often-intangible details of who the team is, what the team is doing, and when the team expects to be doing it, into traceable, easily used information for each of those aspects.
Team Foundation security ...
2
Workaround: Close Visual Studio and related apps, then delete %LocalAppData%\Microsoft\Team Foundation\4.0\Cache.
Reason: TFS2012 RTM only supported v4.0 URI, while TFS2012 Update1 added v5.0. The TFS server I'm using had Update1 installed and uninstalled, and this causes its location service to sometimes provide the v5.0 URI (details not yet known). that ...
2
Yes, you need VS2010 SP1, and the forward compatibility upgrade GDR patch to enable VS2010 to connect to TFS2012. However, the Team Explorer shipped with VS2010 and all its variants (beta, RTM, SP1) do not support creating a Team Project by design.
See Buck Hodges post:
...
2
I would be remiss if I were to not mention that git-tf was not meant to be a replacement for a proper migration and integration tool.
That said, if you want to try, you cannot simply git tf clone a repository and then git tf checkin to a different server. git-tf maps commits to changesets to ensure consistency in the git and TFS repositories. Thus when ...
2
yes you do, the previous shell extension will have been installed by an older version of the power tools (e.g. for TFS 2010)
Go to "Add Remove Programs" in the control panel and highlight "Microsoft Team Foundation server 201x Power tools" right click and select "change" then follow the wizard to remove the Shell extensions.
If you have installed VS 2012 ...
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 ...
1
You can use the getcs command from the tfpt power tool. This will get only the files that were included in a changeset.
This will allow you to, for example:
tfpt getcs /changeset:C1999
1
These are the main work item link types, depending if the link is between a WorkItem and another WorkItem or between a WorkItem and a Test Case.
WorkItem -> WorkItem
Parent/Child
Predecessor/Successor
Related
WorkItem -> Test Case
Tests/Tested By
Affects/Affected By
Shared Step/Test Case
You can also create custom link types!
Ref: Link work ...
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
In TFS you can associate an Area to a team. When you stick the overall owner into it's own team and assign the root as his default area, then you can have your development teams each use a child or children of that. You can then assign one or more features (which would be an area node) to a team to put the pbi's in their backlog view.
That way your product ...
1
Have you configured your test controller for using lab service account?
If not try this:
Use account with appropriate permissions.
This account will be used to access to the build drop location, see
C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\QTController.exe.config
and search for "UseLabServiceAccountToAccessBuildDirectory".
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
An interation (Sprint) is usually used as Iteration Path in Work Items. But from the context of your question I suggest you have a folder in Source Control for each iteration, right?
Right click on the folder and "Advanced-> Security ..."
WebAccess open
Remove "Check Out" and "Check In" for all groups
Now none of your developers is allowed to check in ...
1
I think the Project Collection Valid Users to be a read only group. The members of that group are determined by the members of the child-groups. If you want to have another person in that group, try adding them to one of the groups within the scope. As it sounds like an administrative task you are about to do, add your user to the Project Collection ...
1
Well, this is kind of a mess. I ended up selectively choosing what to put on our build server, rather than trying to sit VS2010 and 2012 side-by-side (had a lot of problems with 2012 there, so ended up having to rollback, too).
We ended up adding -
.NET 4.5 SDK
.NET 4.5 multi-targeting pack
.NET 4.5 Framework
Copy the files in C:\Program Files ...
1
I don't have code examples, but according to this discussion, you should be able to get to code review comments with functionality in the Microsoft.TeamFoundation.Discussion.Client namespace.
Specifically the comments are accessible via the DiscussionThread class. And you should be able to query discussions using IDiscussionManager.
1
It is possible to limit code and work item associations in TFS 2012 by enabling a work item query check in policy.
The TFS 2012 power tools includes a custom check-in policy for this type of policy.
Download the TFS 2012 power tools - Check-In Policy Pack from the TFS 2012 Power Tools
Enable the Work Item Query Policy— Enabling this policy allows ...
1
You can attribute you test methods with the TestCategoryAttribute and the value of Database.
Then configure your Build Definition to filter only run test that are not database. This will stop them running on the Build Server, and just run them locally.
Example Test
[TestClass]
public class Test
{
[TestMethod, TestCategory("Database")]
public void ...
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
There are several options:
You can create separate workspaces for each project and only map the directories that belong to said project, that way the changes will not be 'shared'. See this on how to create separate workspaces for each project.
You can also right-click the project and choose the Check-in option from there.
From the pending changes window, ...
1
Okay, here's how I did it.
Suppose I am trying to copy a project MyProject in CollectionA to CollectionB.
Create a new project MyProject in CollectionB
Open TFS Integration Platform
Select "Create New"
Open folder "Team Foundation Server"
Select "VersionControl" or "VersionControlAndWorkItemTracking" if you need it
Workflow type: Custom / Frequency: ...
1
When I have used TFS, I have tried to keep the "Title" (or "Name") to be a shortened value that can be easily searched and sorted. That value is used when displayed in queries and on the board, so I find it handy to have a different format than the standard user story description.
I would then recommend the user story text you have be in the description. ...
1
It should be possible now, keep in mind as well that the Update 2 for VS 2012 added GIT support.Take a look: http://www.hanselman.com/blog/GitSupportForVisualStudioGitTFSAndVSPutIntoContext.aspx
You can use VS Git support with all your Git projects by just opening
projects. It's just Git. I am pushing branches to CodePlex, to GitHub
and other Git ...
1
I know this question has since been closed, but I cam across this issue and solved it in a different way.
My solution is compromised of a number of websites and windows services and had the same issue of the OctoPack created nuget packages including all the solution assemblies from the 'pooled' output folder when building with Team Build. The reason the ...
1
The TFS Build kicks off the MSBuild tool to perform the actual compilation. By default TFS will capture the MSBuild log (which contains all the info about what was built, errors, warnings, etc). The MSBuild log is included in the Build Drop and linked from the TFS Build Summary and Details page.
I don't think the IBuildDetail will have any of that ...
1
You need to install the tools on the build server as well. The design of the contract tools are such that unless you use Contract.Requires< Exception >(...) one can build and release bits without the use of our tools. If you use Contract.Requires< Exception >(...) however, then you must use the rewriter as the documentation states. Thus, in order ...
1
This will require a few steps:
Create a custom build activity
Add the activity to the build controller
Invoke that custom build activity within a new build process
Use the new build process
1. Create a custom build activity.
Make a new project in VS2012 (I called mine CodeCoverageLibrary. Reference the following assemblies:
...
1
If you only want changes in $/Project/Some/Path, then that should be the first argument to QueryHistory. For example:
QueryHistory("$/Project/Some/Path", RecursionType.Full, 5);
Will show the most recent 5 changesets that affected $/Project/Some/Path.
1
After following all of the instructions here (and finding that weird undocumented enabled/disabled configuration as well), I still had the same problem.
I then read this question - it seems that the answer is the same: without Active Directory, TFS will not send team alerts. Users can set their preferred email address, which TFS will then sync to Active ...
Only top voted, non community-wiki answers of a minimum length are eligible



