Sign in or Join FriendFeed
FriendFeed is the easiest way to share online. Learn more »
Jonas Bandi
Answer by jbandi for TFS Integration Platform: How to map users with the SVN adapter? - http://stackoverflow.com/questio...
Ok the guys over at the TFS Integration Platform MSDN forum provided the solution. I just repeat it here: Add or extend the <UserIdentityMappings> element in your configuration xml. This element is inside the <SessionGroup>. It sould lokk something like this: <UserIdentityMappings EnableValidation="false"> <UserIdentityLookupAddins /> <DisplayNameMappings DirectionOfMapping="LeftToRight"> <DisplayNameMapping Left="svnuser1" Right="domain\user1" MappingRule="SimpleReplacement" /> <DisplayNameMapping Left="svnuser2" Right="domain\user2" MappingRule="SimpleReplacement" /> </DisplayNameMappings> </UserIdentityMappings> This worked form me. - Jonas Bandi