将分支名称转换为代码

时间:2018-01-24 11:43:10

标签: c# git visual-studio

我有一个关于将分支名称作为字符串传递给我的代码的问题。

所以我们使用的是git存储库,分支编号也指的是放置构建的登台环境。意思是,如果我的分支是001,我的网址是001.test.myapplication.com。

我正在编写在分支的登台环境中执行的自动化测试。我的问题是,是否可以将分支编号传递给我的代码,以便我可以将其作为我要测试的URL的一部分?

我正在使用Visual Studio 2017,selenium和specflow。

2 个答案:

答案 0 :(得分:1)

通常的做法是在构建步骤中生成包含此信息的C#文件。

这里已有几个好的答案:

Embed git commit hash in a .Net dll

答案 1 :(得分:1)

我实际上找到了一个完美的解决方案。如果将来共享,其他人也可以在需要时使用它。

        ProcessStartInfo startInfo = new ProcessStartInfo("git.exe");

        startInfo.UseShellExecute = false;
        startInfo.WorkingDirectory = "dir Here";
        startInfo.RedirectStandardInput = true;
        startInfo.RedirectStandardOutput = true;
        startInfo.Arguments = "rev-parse --abbrev-ref HEAD";

        Process process = new Process();
        process.StartInfo = startInfo;
        process.Start();

        string branchname = process.StandardOutput.ReadLine();