我正在尝试根据构建配置(例如 Dev、QA、preprod 等)复制部署批处理文件。我使用的是 switch 语句,但这意味着必须为每个 case switch 复制相同的逻辑(序列)。有没有办法将条件语句放在我的 FindMatchingFiles 活动中?也许在 MatchPattern 参数中?
问问题
159 次
2 回答
0
The solution was to have my deployment batch files include the name of the configuration they apply to.
String.Format("{0}\_DeploymentScripts\{1}*.bat", SourcesDirectory, platform.Configuration)
于 2013-07-11T19:08:43.853 回答
0
没有办法将逻辑放入该活动中。您需要围绕它包装逻辑。您可以简单地使用一个 switch 语句来包装为匹配模式构建字符串的逻辑,然后在执行工作的序列中使用该值。这样你就不需要重复这个序列了。
于 2013-07-03T20:35:52.827 回答