将 ItemGroup 转换为分隔字符串

发布于 2024-12-12 08:01:39 字数 580 浏览 0 评论 0原文

我的问题几乎与 在 MSBuild 中创建字符串 ItemGroup 相同那里提供的解决方案似乎仍然延续了现有的分隔符。这是我尝试做的事情的简化片段:

<Target Name="Testing">
  <ItemGroup>
    <Files Include="$(RootDirectory)\*.*"/>
  </ItemGroup>

  <Message Text="@(Files->'%(Filename)%(Extension) ')"/>
</Target>

我想要的输出看起来像这样:

file1.cs file2.cs file3.cs

但是上面的片段产生以下输出

file1.cs ;file2.cs ;file3.cs

我做错了什么?

My question is almost identical to Create an ItemGroup of strings in MSBuild however the solution offered there still seems to carry over the existing delimiter. Here's a simplified snippet of what I'm attempting to do:

<Target Name="Testing">
  <ItemGroup>
    <Files Include="$(RootDirectory)\*.*"/>
  </ItemGroup>

  <Message Text="@(Files->'%(Filename)%(Extension) ')"/>
</Target>

My desired output is something that looks like this:

file1.cs file2.cs file3.cs

However the snippet above produces the following output

file1.cs ;file2.cs ;file3.cs

What have I done wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寄居者 2024-12-19 08:01:39

尝试使用 MSBuild 转换,如下所示:

    <Message Text="@(Files->'%(Filename)%(Extension)', ' ')"/>

Try to use MSBuild transforms like this:

    <Message Text="@(Files->'%(Filename)%(Extension)', ' ')"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文