1 write to DependentPlatforms
Microsoft.Build.Utilities.Core (1)
PlatformManifest.cs (1)
120DependentPlatforms = new List<DependentPlatform>();
10 references to DependentPlatforms
Microsoft.Build.Utilities.Core (1)
PlatformManifest.cs (1)
147DependentPlatforms.Add(new DependentPlatform(childElement.GetAttribute(Attributes.Name), childElement.GetAttribute(Attributes.Version)));
Microsoft.Build.Utilities.UnitTests (9)
PlatformManifest_Tests.cs (9)
113manifest.Manifest.DependentPlatforms.Count.ShouldBe(0); 134manifest.Manifest.DependentPlatforms.Count.ShouldBe(0); 155manifest.Manifest.DependentPlatforms.Count.ShouldBe(1); 157var platforms = new List<PlatformManifest.DependentPlatform>(manifest.Manifest.DependentPlatforms); 180manifest.Manifest.DependentPlatforms.Count.ShouldBe(3); 182var platforms = new List<PlatformManifest.DependentPlatform>(manifest.Manifest.DependentPlatforms); 210manifest.Manifest.DependentPlatforms.Count.ShouldBe(1); 211PlatformManifest.DependentPlatform platform = manifest.Manifest.DependentPlatforms.First(); 240manifest.Manifest.DependentPlatforms.Count.ShouldBe(0);