1.txt is added and 2.txt is modified.
The problem is, the changeType is always "Add, Edit, Encoding"!
var tfs = ...;
var changeset = tfs.GetChangeset(new Uri("tfs path"), 999);
foreach (var w in changeset.Changes)
Debug.Print( w.Item.ServerItem + " -> " + w.ChangeType );
//Output:
$/.../1.txt -> Add, Edit, Encoding
$/.../2.txt -> Add, Edit, Encoding
Does anybody know what happened to each file and why i always have these three types?
Thanks!
A little late but happened to saw it unanswered so this is what i did:
That's not a working code, it's just the basic idea