trevorr / vss2git

Migrate Visual SourceSafe repositories to Git
Apache License 2.0
153 stars 116 forks source link

check user-defined mapping of user names to email addresses #44

Open mfriedrich74 opened 6 years ago

mfriedrich74 commented 6 years ago

Add optional user name to email xml-file mapping

This allows to specify an XML mapping file, which maps VSS user names to email addresses. VSS user names in the XML file and in VSS are treated case insensitive (both converted to lowercase).

As sample XML-file: `

<map name="user2" email="email2@domain" />

` If the XML map element contains no "@", the default email domain will be appended.

For reading XML-files the references System.Xml and System.Xml.Linq were added to the Visual Studio Vss2Git project.