Sep.Git.Tfs.Util.CheckinOptionsFactory.BuildShelveSetSpecificCheckinOptions C# (CSharp) Méthode

BuildShelveSetSpecificCheckinOptions() public méthode

public BuildShelveSetSpecificCheckinOptions ( CheckinOptions sourceCheckinOptions, string commitMessage ) : CheckinOptions
sourceCheckinOptions Sep.Git.Tfs.Commands.CheckinOptions
commitMessage string
Résultat Sep.Git.Tfs.Commands.CheckinOptions
        public CheckinOptions BuildShelveSetSpecificCheckinOptions(CheckinOptions sourceCheckinOptions,
            string commitMessage)
        {
            var customCheckinOptions = sourceCheckinOptions.Clone(_globals);

            customCheckinOptions.CheckinComment = commitMessage;

            customCheckinOptions.ProcessWorkItemCommands(false);

            return customCheckinOptions;
        }