1 write to DependentPlatforms
Microsoft.Build.Utilities.Core (1)
PlatformManifest.cs (1)
119DependentPlatforms = new List<DependentPlatform>();
10 references to DependentPlatforms
Microsoft.Build.Utilities.Core (1)
PlatformManifest.cs (1)
146DependentPlatforms.Add(new DependentPlatform(childElement.GetAttribute(Attributes.Name), childElement.GetAttribute(Attributes.Version)));
Microsoft.Build.Utilities.UnitTests (9)
PlatformManifest_Tests.cs (9)
112manifest.Manifest.DependentPlatforms.Count.ShouldBe(0); 133manifest.Manifest.DependentPlatforms.Count.ShouldBe(0); 154manifest.Manifest.DependentPlatforms.Count.ShouldBe(1); 156var platforms = new List<PlatformManifest.DependentPlatform>(manifest.Manifest.DependentPlatforms); 179manifest.Manifest.DependentPlatforms.Count.ShouldBe(3); 181var platforms = new List<PlatformManifest.DependentPlatform>(manifest.Manifest.DependentPlatforms); 209manifest.Manifest.DependentPlatforms.Count.ShouldBe(1); 210PlatformManifest.DependentPlatform platform = manifest.Manifest.DependentPlatforms.First(); 239manifest.Manifest.DependentPlatforms.Count.ShouldBe(0);