// 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.Analyzers.MatchFolderAndNamespace
{
internal static class MatchFolderAndNamespaceConstants
{
public const string RootNamespaceOption = "build_property.RootNamespace";
public const string ProjectDirOption = "build_property.ProjectDir";
public const string TargetNamespace = "TargetNamespace";
}
}
|