// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace ILLink.RoslynAnalyzer
{
public static class MSBuildPropertyOptionNames
{
public const string EnableSingleFileAnalyzer = nameof(EnableSingleFileAnalyzer);
public const string IncludeAllContentForSelfExtract = nameof(IncludeAllContentForSelfExtract);
public const string EnableTrimAnalyzer = nameof(EnableTrimAnalyzer);
public const string EnableAotAnalyzer = nameof(EnableAotAnalyzer);
}
}
|