1 write to MetadataItems
Microsoft.Build.Tasks.CodeAnalysis.Sdk (1)
src\Compilers\Core\MSBuildTask\GenerateMSBuildEditorConfig.cs (1)
60MetadataItems = Array.Empty<ITaskItem>();
5 references to MetadataItems
Microsoft.Build.Tasks.CodeAnalysis.Sdk (5)
src\Compilers\Core\MSBuildTask\GenerateMSBuildEditorConfig.cs (5)
19/// This task takes a set of items passed in via <see cref="MetadataItems"/> and <see cref="PropertyItems"/> and transforms 27/// <see cref="MetadataItems"/> is expected to be a list of items whose <see cref="ITaskItem.ItemSpec"/> represents a file in the 31/// file can have multiple entries in the <see cref="MetadataItems" /> differing by its <c>ItemType</c>. 33/// Each of the <see cref="MetadataItems"/> will be transformed into a new section in the generated config file. The section 82var groupedItems = MetadataItems.GroupBy(i => NormalizeWithForwardSlash(i.GetMetadata("FullPath")));