コード例 #1
0
ファイル: Program.cs プロジェクト: akrisiun/GitSharp
        /// <summary>
        /// Implementation of --version
        /// </summary>
        private static void ShowVersion()
        {
            var version_command = new GitSharp.CLI.Nonstandard.Version();

            version_command.Init(null, null);
            version_command.Execute(new string[0]);
        }
コード例 #2
0
ファイル: Program.cs プロジェクト: yolanother/GitSharp
 /// <summary>
 /// Implementation of --version
 /// </summary>
 private static void ShowVersion()
 {
     var version_command = new GitSharp.CLI.Nonstandard.Version();
     version_command.Init(null, null);
     version_command.Execute(new string[0]);
 }