| File: SR.cs | Web Access |
| Project: src\wpf\src\Microsoft.DotNet.Wpf\src\PresentationBuildTasks\PresentationBuildTasks.csproj (PresentationBuildTasks) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Resources; namespace MS.Utility { internal static partial class SR { // Expose ResourceManager instance to allow PresentationBuildTask MSBuild tasks // that derive from Task to pass ResourceManager to their base class constructor. // (Generated SR.common.cs always defines ResourceManager as private. GenerateCommonSRSource // target should be updated to accept a parameter for ResourceManager property access // modifier.) public static ResourceManager SharedResourceManager { get { return ResourceManager; } } } }