Ejemplo n.º 1
0
 public void ShowDiff( object repositoryId, long firstVersion, long lastVersion )
 {
     DiffTwoFileVersions diff = new DiffTwoFileVersions( connectionSettings, ExternalToolsSettings );
     diff.ShowDiff( (string) repositoryId, Math.Max( 1, firstVersion ), lastVersion );
 }
Ejemplo n.º 2
0
 public void ShowFile( object repositoryId, long version )
 {
     DiffTwoFileVersions diff = new DiffTwoFileVersions( connectionSettings, ExternalToolsSettings );
     diff.ShowFile( (string) repositoryId, version );
 }