TFS 2010 中文件的条件包含和排除

发布于 2024-11-29 19:14:58 字数 331 浏览 0 评论 0原文

我们有 DEV / QA / Prod 站点,如下所示:

dev: something.dev.org
qa: something-qa.dev.org/
prod: something.org/

理想情况下,我希望 TFS 中的某个地方有多个配置文件,我可以根据当前选择的构建配置有条件地获取这些配置文件。

示例:TFS 中的 app.config 文件、robots.txt 文件,每个文件都有自己的 dev、qa 和 prod 版本。

实现这种目标的最佳实践是什么?

使用 TFS 2010。

此致,n00b。

We have DEV / QA / Prod sites as follows:

dev: something.dev.org
qa: something-qa.dev.org/
prod: something.org/

Ideally I would like there to be somewhere in TFS that has multiple config files that I would grab conditionally, based on what build configuration is currently selected.

Example: app.config files, robots.txt files, each with their own versions for dev, qa, and prod, in TFS.

What are best practices for achieving this kind of thing?

using TFS 2010.

Sincerely, n00b.

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

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

发布评论

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

评论(1

遗忘曾经 2024-12-06 19:14:58

您可以考虑在项目文件中使用条件 ItemGroup:

<ItemGroup Condition=" '$(Configuration)' == 'Release' ">
    <None Include="app.config">
      <SubType>Designer</SubType>
    </None>
</ItemGroup>

但这意味着项目文件应该在文本编辑器中编辑,并且不确定 VS 在对项目文件进行操作后是否会保留这些更改。

You can consider using conditional ItemGroup in project file:

<ItemGroup Condition=" '$(Configuration)' == 'Release' ">
    <None Include="app.config">
      <SubType>Designer</SubType>
    </None>
</ItemGroup>

But this means project file should be edited in text editor and not sure whether VS will preserve these changes after manipulations with project files.

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