Can't get MSBuild Community Task RegexReplace to work
问题 I'm trying to copy a bunch of files whose names begin with the prefix DR__ , but the copies must have that prefix removed. That is, DR__foo must be copied as foo . I'm trying this, which is based in the example provided in the documentation (the .chm): <Target Name="CopyAuxiliaryFiles"> <MakeDir Directories="$(TargetDir)Parameters" Condition="!Exists('$(TargetDir)Parameters')" /> <ItemGroup> <ContextVisionParameterFiles Include="$(SolutionDir)CVParameters\DR__*" /> </ItemGroup> <Message Text=