public static void Main(string[] args) { string currentDirectory = Environment.GetEnvironmentVariable("vsts-cli-directory") ?? System.IO.Directory.GetCurrentDirectory(); GitConfiguration gitConfiguration = GitRepoHelpers.Create(currentDirectory); if (gitConfiguration.GitDirectory != null && gitConfiguration.NonVstsHost) { Console.WriteLine($"Found a non-VSTS git repo at {gitConfiguration.GitDirectory} pointing to {gitConfiguration.Origin}", ConsoleColor.Yellow); Environment.Exit(0); } if (string.IsNullOrWhiteSpace(gitConfiguration.Name) || string.IsNullOrWhiteSpace(gitConfiguration.Host)) { Console.WriteLine($"Could not find an existing VSTS git repo in the current {gitConfiguration.CurrentDirectory} directory or parent directories", ConsoleColor.Yellow); Environment.Exit(0); } var vsts = new Vsts(gitConfiguration); var vstsProjectHelper = new VstsProjectHelper(vsts); vstsProjectHelper.CheckAccessToken(); var vstsApiHelper = new VstsApiHelper(vsts.AccountUri, vsts.PersonalAccessToken); vstsProjectHelper.CheckRemoteProjectLink(vstsApiHelper); vstsProjectHelper.CheckLocalProjectLink(vstsApiHelper); var cli = new Cli(vsts, vstsApiHelper); var exitCode = cli.Execute(args); Environment.Exit(exitCode); }
public static void Main(string[] args) { //No need to run any checks on directories, check for personal access tokens as we're only running the help sub-system if (args.Intersect(new[] { CommandName.DashDashHelp, CommandName.DashH, CommandName.DashQuestion }, StringComparer.OrdinalIgnoreCase).Any()) { new Cli(null, null).Execute(args); Environment.Exit(0); } string currentDirectory = Environment.GetEnvironmentVariable("vsts-cli-directory") ?? System.IO.Directory.GetCurrentDirectory(); GitConfiguration gitConfiguration = GitRepoHelpers.Create(currentDirectory); if (gitConfiguration.GitDirectory != null && gitConfiguration.NonVstsHost) { Console.WriteLine($"Found a non-VSTS git repo at {gitConfiguration.GitDirectory} pointing to {gitConfiguration.Origin}", ConsoleColor.Yellow); Environment.Exit(0); } if (string.IsNullOrWhiteSpace(gitConfiguration.Name) || string.IsNullOrWhiteSpace(gitConfiguration.Host)) { Console.WriteLine($"Could not find an existing VSTS git repo in the current {gitConfiguration.CurrentDirectory} directory or parent directories", ConsoleColor.Yellow); Environment.Exit(0); } var vsts = new Vsts(gitConfiguration, Environment.GetEnvironmentVariable("runscopeBucket")); var vstsProjectHelper = new VstsProjectHelper(vsts); vstsProjectHelper.CheckAccessToken(); var vstsApiHelper = new VstsApiHelper(vsts.AccountUri, vsts.PersonalAccessToken); vstsProjectHelper.CheckRemoteProjectLink(vstsApiHelper); vstsProjectHelper.CheckLocalProjectLink(vstsApiHelper); var cli = new Cli(vsts, vstsApiHelper); var exitCode = cli.Execute(args); Environment.Exit(exitCode); }