MSBuild 扩展包

发布于 2024-12-02 03:56:56 字数 231 浏览 0 评论 0原文

我正在摆弄一些 TFS 构建定义文件并遇到了一个小问题。我使用 MSBuild 扩展包,如此处所述,但由于某种原因,我的 assemblyInfo.cs 文件是未从 TFS2010 中检出。此任务是否应该检查所有指定的文件并更改程序集版本?它正确更改了所有文件中的版本,但之后没有待处理的更改。有什么想法吗?

I'm messing around with some TFS build definition files and run into a little problem. I se MSBuild Extension Pack, as explained here, but for some reason my assemblyInfo.cs files are not checked out from TFS2010. Should this task check out all the specified files and change the assembly version? It changes the version correctly in all the files, however there are no pending changes afterwards. Any Ideas?

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

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

发布评论

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

评论(1

素年丶 2024-12-09 03:56:56

回答我自己的问题 - 不,文件不会自动检出。使用 MBEP 签出文件 - 特别是如果您尚未将 AssemblyINfo.cs 文件链接到每个项目并且有一个非常大的项目。然后你会遇到最大 259 个字符的错误:(

<MsBuild.ExtensionPack.VisualStudio.TfsSource TaskAction="Checkout" ItemCol="@(AssemblyInfoFiles)" WorkingDirectory="$(SolutionRoot)" Version="2010"/>

To answer my own question - No, the files will not automatically be checked out. Use MBEP to checkout the files - especially if you haven't linked the AssemblyINfo.cs file into each project and have a very large project. Then you'll hit the max 259 characters error :(

<MsBuild.ExtensionPack.VisualStudio.TfsSource TaskAction="Checkout" ItemCol="@(AssemblyInfoFiles)" WorkingDirectory="$(SolutionRoot)" Version="2010"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文