我正在尝试将文档 XML 文件作为构建后 XSLT 转换进行后处理(使用新的XSLTransformation步骤),但构建失败并出现错误Unable to execute transformation. Could not find file 'C:\...\documentation.XML'
。构建完成后,文档 XML 文件在磁盘上显示良好,但在 AfterBuild 步骤期间根本不存在:<Exec Command="dir $(ProjectDir)$(DocumentationFile)"/>
找不到文件,<Exec Command="$(ProjectDir)$(DocumentationFile)"/>
.
XslTransformation 步骤从一个名为AfterBuild
并声明为取决于该Compile
步骤的任务运行。显然,我在声明此任务的方式上遗漏了一些东西,因此它在文档 XML 文件完成之前不会运行,但我不知道是什么。