.NET、Visual Studio 2008、SVN - 在编译时读取修订号?

发布于 2024-10-08 22:53:08 字数 68 浏览 2 评论 0原文

有谁知道是否有一种方法可以从 SVN 访问解决方案/项目的修订号并在编译时将其合并到应用程序代码中?

谢谢

Does any one know if there is a way to access a solution/project's revision number from SVN and incorporate this in application code at compile time?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

手心的海 2024-10-15 22:53:08

免责声明:在撰写本文时我是该项目的成员。尽管如此,我仍然推荐 AutoBuildVersion。

是的,AutobuildVersionSVN PlugIn 提供了这样的功能。

Disclaimer: I was a member of the project at the time of writing this. Though, I still recommend AutoBuildVersion.

Yes, AutobuildVersion does together with the SVN PlugIn provide such a functionality.

诗酒趁年少 2024-10-15 22:53:08

假设您的 SVN 版本与项目程序集版本相同

System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.Revision

,或者对于某些具有 Sometype 的程序集

System.Reflection.Assembly.GetAssembly(typeof(SomeType)).GetName().Version.Revision

Supposing your SVN version is the same as project assembly version

System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.Revision

or, for some assembly which has Sometype

System.Reflection.Assembly.GetAssembly(typeof(SomeType)).GetName().Version.Revision
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文