直到去年,我们使用了一个MsBuild文件来进行构建定义。今年以来,我们希望在2015年TFS中使用新的vNext构建系统。
这是我的问题:
在xaml文件中,我们有一个行,如
<UsingTask TaskName="ReplaceTextInFile" TaskFactory="CodeTaskFactory" AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.v4.0.dll">在后面的xaml中使用,如
<ReplaceTextInFile
InputFilename="$(someFolder)$(someOtherFolder)\someFile.config"
OutputFilename="$(someFolder)$(someOtherFolder)\someFile.config"
MatchExpression="$(somePattern)"
ReplacementText="$(someText)"
/>如何将其实现到新的vNext?
https://stackoverflow.com/questions/42392565
复制相似问题