| File: AppConfig\RuntimeSection.cs | Web Access |
| Project: src\msbuild\src\Tasks\Microsoft.Build.Tasks.csproj (Microsoft.Build.Tasks.Core) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Collections.Generic; using System.Xml; namespace Microsoft.Build.Tasks { /// <summary> /// Wraps the <runtime> section of the .config file. /// </summary> internal sealed class RuntimeSection { /// <summary> /// The reader is positioned on a <runtime> element--read it. /// </summary> internal void Read(XmlReader reader) { while (reader.Read()) { // Look for the end element. if (reader.NodeType == XmlNodeType.EndElement && AppConfig.StringEquals(reader.Name, "runtime")) { return; } // Look for a <dependentAssembly> element if (reader.NodeType == XmlNodeType.Element && AppConfig.StringEquals(reader.Name, "dependentAssembly")) { var dependentAssembly = new DependentAssembly(); dependentAssembly.Read(reader); // Only add if there was an <assemblyIdentity> tag. // Otherwise, this section is no use. if (dependentAssembly.PartialAssemblyName != null) { DependentAssemblies.Add(dependentAssembly); } } } } /// <summary> /// Return the collection of dependent assemblies for this runtime element. /// </summary> internal List<DependentAssembly> DependentAssemblies { get; } = new List<DependentAssembly>(); } }