Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试调试在我们的 TFS 构建代理上运行的 msbuild 脚本。我没有构建代理服务器的权限。
有没有办法可以在我的 msbuild 脚本(“消息”或类似的)中添加一些调试以输出给定目录中所有文件的列表?
希望这有助于以递归方式列出 MSBuild 文件所在的文件夹中的所有文件:
<Target Name="Listing"> <ItemGroup> <PackageFiles Include="$(MSBuildProjectDirectory)\**\*.*;"/> </ItemGroup> <Message Text="%(PackageFiles.FullPath)"/> </Target>