2 instantiations of SdkResultItem
Microsoft.Build (1)
BackEnd\Components\SdkResolution\TranslationHelpers.cs (1)
53item = new SdkResultItem(itemSpec, metadata);
Microsoft.NET.Sdk.WorkloadMSBuildSdkResolver (1)
CachingWorkloadResolver.cs (1)
164new SdkResultItem(sdkReferenceName,
18 references to SdkResultItem
Microsoft.Build (8)
BackEnd\Components\SdkResolution\SdkResult.cs (3)
34IDictionary<string, string> propertiesToAdd = null, IDictionary<string, SdkResultItem> itemsToAdd = null, IDictionary<string, string> environmentVariablesToAdd = null) 51IDictionary<string, SdkResultItem> itemsToAdd, IEnumerable<string> warnings, IDictionary<string, string> environmentVariablesToAdd = null) 94dictionaryCreator: count => new Dictionary<string, SdkResultItem>(count, StringComparer.OrdinalIgnoreCase));
BackEnd\Components\SdkResolution\SdkResultFactory.cs (4)
39IDictionary<string, SdkResultItem> itemsToAdd, 48IDictionary<string, SdkResultItem> itemsToAdd, 57IDictionary<string, SdkResultItem> itemsToAdd, 67IDictionary<string, SdkResultItem> itemsToAdd = null,
BackEnd\Components\SdkResolution\TranslationHelpers.cs (1)
37public static void Translate(this ITranslator t, ref SdkResultItem item)
Microsoft.Build.Framework (8)
Sdk\SdkResult.cs (2)
28private protected IDictionary<string, SdkResultItem> _itemsToAdd; 68public virtual IDictionary<string, SdkResultItem> ItemsToAdd { get => _itemsToAdd; protected set => _itemsToAdd = value; }
Sdk\SdkResultFactory.cs (4)
38IDictionary<string, SdkResultItem> itemsToAdd, 62IDictionary<string, SdkResultItem> itemsToAdd, 91IDictionary<string, SdkResultItem> itemsToAdd, 121IDictionary<string, SdkResultItem> itemsToAdd = null,
Sdk\SdkResultItem.cs (2)
28/// Creates an <see cref="SdkResultItem"/> 40if (obj is SdkResultItem item &&
Microsoft.NET.Sdk.WorkloadMSBuildSdkResolver (2)
CachingWorkloadResolver.cs (2)
110IDictionary<string, SdkResultItem> itemsToAdd 162var itemsToAdd = new Dictionary<string, SdkResultItem>();