// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace Microsoft.NET.Build.Tasks.ConflictResolution
{
static class MetadataNames
{
public const string Aliases = "Aliases";
public const string DestinationSubPath = "DestinationSubPath";
public const string Extension = "Extension";
public const string FileName = "FileName";
public const string HintPath = "HintPath";
public const string NuGetPackageId = "NuGetPackageId";
public const string NuGetPackageVersion = "NuGetPackageVersion";
public const string Path = "Path";
public const string Private = "Private";
public const string TargetPath = "TargetPath";
}
}
|