| File: BootstrapperUtil\productvalidationresults.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; using System.Collections.Generic; #nullable disable namespace Microsoft.Build.Tasks.Deployment.Bootstrapper { /// <summary> /// Handles and stores xml validation events for a product, and contains the XmlValidationResults of a package. /// </summary> internal sealed class ProductValidationResults : XmlValidationResults { private readonly Dictionary<string, XmlValidationResults> _packageValidationResults = new Dictionary<string, XmlValidationResults>(StringComparer.Ordinal); public ProductValidationResults(string filePath) : base(filePath) { } /// <summary> /// Adds the validation results of a package of the specified culture into the ProductValidationResults. /// </summary> /// <param name="culture">The culture of the XmlValidationResults to add.</param> /// <param name="results">The vaue of the results to add.</param> public void AddPackageResults(string culture, XmlValidationResults results) { if (!_packageValidationResults.ContainsKey(culture)) { _packageValidationResults.Add(culture, results); } else { System.Diagnostics.Debug.Fail("Validation results have already been added for culture '{0}'", culture); } } /// <summary> /// Gets the XmlValidationResults for the specified culture. /// </summary> /// <param name="culture">The culture of the XmlValidationResults to get.</param> /// <returns>The XmlValidationResults associated with the specified culture.</returns> public XmlValidationResults PackageResults(string culture) { _packageValidationResults.TryGetValue(culture, out XmlValidationResults results); return results; } } }