public void WhenGitHubFlowVersionIsExecutedWithToFileOptionSet()
 {
     _tempFile = Path.Combine(PathHelper.GetTempPath(), "ToFileTest.json");
     _result = GitHubFlowVersionHelper.ExecuteIn(RepositoryPath, toFile: _tempFile);
 }
 public void WhenGitHubFlowVersionIsExecuted()
 {
     _result = GitHubFlowVersionHelper.ExecuteIn(RepositoryPath);
 }
 public void WhenGitHubFlowVersionIsExecutedWithExecOption()
 {
     var buildFile = Path.Combine(RepositoryPath, "TestBuildFile.proj");
     File.WriteAllBytes(buildFile, Properties.Resources.TestBuildFile);
     _result = GitHubFlowVersionHelper.ExecuteIn(RepositoryPath, projectFile: "TestBuildFile.proj", targets: "OutputResults");
 }