File: MSBuild\Constants\MetadataNames.cs
Web Access
Project: src\src\Workspaces\MSBuild\BuildHost\Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.csproj (Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
 
namespace Microsoft.CodeAnalysis.MSBuild;
 
internal static class MetadataNames
{
    public const string Aliases = nameof(Aliases);
    public const string FullPath = nameof(FullPath);
    public const string HintPath = nameof(HintPath);
    public const string Link = nameof(Link);
    public const string Name = nameof(Name);
    public const string ReferenceOutputAssembly = nameof(ReferenceOutputAssembly);
    public const string Version = nameof(Version);
}