コード例 #1
1
ファイル: Rcheckin.cs プロジェクト: vitalybe/git-tfs
 public Rcheckin(TextWriter stdout, CheckinOptions checkinOptions, TfsWriter writer)
 {
     _stdout = stdout;
     _checkinOptions = checkinOptions;
     _checkinOptionsFactory = new CommitSpecificCheckinOptionsFactory(_stdout);
     _writer = writer;
 }
コード例 #2
0
ファイル: Shelve.cs プロジェクト: pmiossec/git-tfs
 public Shelve(CheckinOptions checkinOptions, TfsWriter writer, Globals globals)
 {
     _globals = globals;
     _checkinOptions = checkinOptions;
     _checkinOptionsFactory = new CheckinOptionsFactory(_globals);
     _writer = writer;
 }
コード例 #3
0
ファイル: Rcheckin.cs プロジェクト: pmiossec/git-tfs
 public Rcheckin(CheckinOptions checkinOptions, TfsWriter writer, Globals globals, AuthorsFile authors)
 {
     _checkinOptions = checkinOptions;
     _checkinOptionsFactory = new CheckinOptionsFactory(globals);
     _writer = writer;
     _globals = globals;
     _authors = authors;
 }
コード例 #4
0
ファイル: Rcheckin.cs プロジェクト: patthoyts/git-tfs
 public Rcheckin(TextWriter stdout, CheckinOptions checkinOptions, TfsWriter writer, Globals globals)
 {
     _stdout = stdout;
     _checkinOptions = checkinOptions;
     _checkinOptionsFactory = new CommitSpecificCheckinOptionsFactory(_stdout, globals);
     _writer = writer;
     _globals = globals;
 }
コード例 #5
0
ファイル: Shelve.cs プロジェクト: XinChenBug/git-tfs
 public Shelve(TextWriter stdout, CheckinOptions checkinOptions, TfsWriter writer, Globals globals)
 {
     _stdout = stdout;
     _globals = globals;
     _checkinOptions = checkinOptions;
     _checkinOptionsFactory = new CheckinOptionsFactory(_stdout, _globals);
     _writer = writer;
 }
コード例 #6
0
ファイル: Rcheckin.cs プロジェクト: XinChenBug/git-tfs
 public Rcheckin(TextWriter stdout, CheckinOptions checkinOptions, TfsWriter writer, Globals globals, AuthorsFile authors)
 {
     _stdout = stdout;
     _checkinOptions = checkinOptions;
     _checkinOptionsFactory = new CheckinOptionsFactory(_stdout, globals);
     _writer = writer;
     _globals = globals;
     _authors = authors;
 }
コード例 #7
0
ファイル: Checkin.cs プロジェクト: XinChenBug/git-tfs
 public Checkin(TextWriter stdout, CheckinOptions checkinOptions, TfsWriter writer)
     : base(stdout, checkinOptions, writer)
 {
 }
コード例 #8
0
ファイル: CheckinBase.cs プロジェクト: XinChenBug/git-tfs
 protected CheckinBase(TextWriter stdout, CheckinOptions checkinOptions, TfsWriter writer)
 {
     _stdout = stdout;
     _checkinOptions = checkinOptions;
     _writer = writer;
 }
コード例 #9
0
ファイル: CheckinTool.cs プロジェクト: pmiossec/git-tfs
 public CheckinTool(CheckinOptions checkinOptions, TfsWriter writer)
     : base(checkinOptions, writer)
 {
 }
コード例 #10
0
ファイル: Rcheckin.cs プロジェクト: eeevans/git-tfs
 public Rcheckin(TextWriter stdout, CheckinOptions checkinOptions, TfsWriter writer)
 {
     _stdout = stdout;
     _checkinOptions = checkinOptions;
     _writer = writer;
 }
コード例 #11
0
ファイル: CheckinBase.cs プロジェクト: pmiossec/git-tfs
 protected CheckinBase(CheckinOptions checkinOptions, TfsWriter writer)
 {
     _checkinOptions = checkinOptions;
     _writer = writer;
 }