File: AssemblyResources.cs | Web Access |
Project: ..\..\..\src\Build.OM.UnitTests\Microsoft.Build.Engine.OM.UnitTests.csproj (Microsoft.Build.Engine.OM.UnitTests) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; #nullable disable namespace Microsoft.Build.Shared { /// <summary> /// This class provides access to the assembly's resources. /// </summary> internal static class AssemblyResources { /// <summary> /// Dummy /// </summary> internal static string GetString(string name) { return String.Empty; } } } |