Can I make a constant from a compile-time env variable in csharp?(我可以从 csharp 中的编译时环境变量中创建一个常量吗?)
问题描述
我们使用 Hudson 来构建我们的项目,并且 Hudson 可以方便地定义环境变量,例如%BUILD_NUMBER%"编译时间.
We use Hudson to build our projects, and Hudson conveniently defines environment variables like "%BUILD_NUMBER%" at compile time.
我想在代码中使用该变量,这样我们就可以在运行时记录下构建的内容.但是我不能做 System.Environment.GetEnvironmentVariable 因为那是访问运行时环境,我想要的是这样的:
I'd like to use that variable in code, so we can do things like log what build this is at run time. However I CAN NOT do System.Environment.GetEnvironmentVariable because that is accessing the run-time environment, what I want is something like:
#define BUILD_NUM = %BUILD_NUMBER%
或
const string BUILD_NUM = %BUILD_NUMBER%
除非我不知道语法.有人可以指出我正确的方向吗?谢谢!
Except I don't know the syntax. Can someone please point me in the right direction? Thanks!
推荐答案
好的,这就是我最终要做的.它不是很优雅,但它确实有效.我创建了一个如下所示的预构建步骤:
Okay here's what I wound up doing. It's not very elegant, but it works. I created a pre-build step that looks like this:
echo namespace Some.Namespace > "$(ProjectDir)CiInfo.cs"
echo { >> "$(ProjectDir)CiInfo.cs"
echo ///^<summary^>Info about the continuous integration server build that produced this binary.^</summary^> >> "$(ProjectDir)CiInfo.cs"
echo public static class CiInfo >> "$(ProjectDir)CiInfo.cs"
echo { >> "$(ProjectDir)CiInfo.cs"
echo ///^<summary^>The current build number, such as "153"^</summary^> >> "$(ProjectDir)CiInfo.cs"
echo public const string BuildNumber = ("%BUILD_NUMBER%" == "" ? @"Unknown" : "%BUILD_NUMBER%"); >> "$(ProjectDir)CiInfo.cs"
echo ///^<summary^>String of the build number and build date/time, and other useful info.^</summary^> >> "$(ProjectDir)CiInfo.cs"
echo public const string BuildTag = ("%BUILD_TAG%" == "" ? @"nohudson" : "%BUILD_TAG%") + " built: %DATE%-%TIME%"; >> "$(ProjectDir)CiInfo.cs"
echo } >> "$(ProjectDir)CiInfo.cs"
echo } >> "$(ProjectDir)CiInfo.cs"
然后我将CiInfo.cs"添加到项目中,但从版本控制中忽略了它.这样我就不必编辑或提交它,并且该项目始终有一个可用的常量,即最新的内部版本号和时间.
Then I added "CiInfo.cs" to the project, but ignored it from version control. That way I never have to edit it or commit it, and the project always has a constant available that is the latest build number and time.
这篇关于我可以从 csharp 中的编译时环境变量中创建一个常量吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:我可以从 csharp 中的编译时环境变量中创建一个常量吗?


- 如何用自己压缩一个 IEnumerable 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- 输入按键事件处理程序 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01