39 lines
1.3 KiB
C#
39 lines
1.3 KiB
C#
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using CommandLine.OptParse;
|
|
using Sep.Git.Tfs.Util;
|
|
|
|
namespace Sep.Git.Tfs.Commands
|
|
{
|
|
[StructureMapSingleton]
|
|
public class CheckinOptions
|
|
{
|
|
private List<string> _workItemsToAssociate = new List<string>();
|
|
private List<string> _workItemsToResolve = new List<string>();
|
|
|
|
[OptDef(OptValType.ValueOpt)]
|
|
[ShortOptionName('m')]
|
|
[LongOptionName("comment")]
|
|
[UseNameAsLongOption(false)]
|
|
[Description("A comment for the changeset.")]
|
|
public string CheckinComment { get; set; }
|
|
|
|
[OptDef(OptValType.Flag)]
|
|
[ShortOptionName('f')]
|
|
[LongOptionName("force")]
|
|
[UseNameAsLongOption(false)]
|
|
public bool Force { get; set; }
|
|
|
|
[OptDef(OptValType.MultValue, ValueType = typeof(string))]
|
|
[ShortOptionName('w')]
|
|
[LongOptionName("associated-work-item")]
|
|
[UseNameAsLongOption(false)]
|
|
public List<string> WorkItemsToAssociate { get { return _workItemsToAssociate; } }
|
|
|
|
[OptDef(OptValType.MultValue, ValueType = typeof(string))]
|
|
[LongOptionName("resolved-work-item")]
|
|
[UseNameAsLongOption(false)]
|
|
public List<string> WorkItemsToResolve { get { return _workItemsToResolve; } }
|
|
}
|
|
}
|