嵌入应用程序编译时间戳
有没有一种简单的方法可以在构建过程中进行配置,以写入要在应用程序中显示的构建时间戳,以具有类似“此页面上次更新时间:06/26/2010”的内容
Is there an easy way to configure in a build process to write in the time stamp of the build to be displayed in the application to have something like "This page was last updated: 06/26/2010"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种解决方案是在构建过程中将此信息嵌入到程序集属性中。您可以使用 MSBuild 社区任务 Time 和 AssemblyInfo 任务来执行此操作:
然后
您将在项目中包含源文件(本例中为 GlobalInfo.cs)。要在代码中访问该值,您可以使用如下内容:
One solution would be to embed this information in an assembly attribute during your build. You can do this using the MSBuild community tasks Time and AssemblyInfo tasks:
and
You would then include the source file in your project (GlobalInfo.cs in this example). To access this value in code you would use something like this: