次の項目グループでカスタム .targets ファイルを作成しました
<ItemGroup>
<AvailableItemName Include="Foo" />
</ItemGroup>
そのコレクションまたはリストにアクセスでき、@(Foo)
取得できます'Item1.txt;Item2.txt'
もしそうなら、私は%(Foo.FullPath)
得る'C:\projectfolder\Item1.txt'
メタ データ タグ % と「コレクション」タグ @ を一緒に使用して を取得するにはどうすればよい
'C:\projectfolder\Item1.txt;C:\projectfolder\subfolder\Item2.txt'
ですか?