1 instantiation of DependentPlatform
Microsoft.Build.Utilities.Core (1)
PlatformManifest.cs (1)
146DependentPlatforms.Add(new DependentPlatform(childElement.GetAttribute(Attributes.Name), childElement.GetAttribute(Attributes.Version)));
5 references to DependentPlatform
Microsoft.Build.Utilities.Core (2)
PlatformManifest.cs (2)
56public ICollection<DependentPlatform> DependentPlatforms { get; private set; } 119DependentPlatforms = new List<DependentPlatform>();
Microsoft.Build.Utilities.UnitTests (3)
PlatformManifest_Tests.cs (3)
156var platforms = new List<PlatformManifest.DependentPlatform>(manifest.Manifest.DependentPlatforms); 181var platforms = new List<PlatformManifest.DependentPlatform>(manifest.Manifest.DependentPlatforms); 210PlatformManifest.DependentPlatform platform = manifest.Manifest.DependentPlatforms.First();