TFS 2010 中文件的条件包含和排除
我们有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以考虑在项目文件中使用条件 ItemGroup:
但这意味着项目文件应该在文本编辑器中编辑,并且不确定 VS 在对项目文件进行操作后是否会保留这些更改。
You can consider using conditional ItemGroup in project file:
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.