-
-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathPolySharpMSBuildProperties.cs
More file actions
42 lines (35 loc) · 1.9 KB
/
PolySharpMSBuildProperties.cs
File metadata and controls
42 lines (35 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
namespace PolySharp.SourceGenerators.Constants;
/// <summary>
/// Exposes the available PolySharp MSBuild properties.
/// </summary>
internal static class PolySharpMSBuildProperties
{
/// <summary>
/// The MSBuild property for <see cref="Models.GenerationOptions.UsePublicAccessibilityForGeneratedTypes"/>.
/// </summary>
public const string UsePublicAccessibilityForGeneratedTypes = "PolySharpUsePublicAccessibilityForGeneratedTypes";
/// <summary>
/// The MSBuild property for <see cref="Models.GenerationOptions.IncludeRuntimeSupportedAttributes"/>.
/// </summary>
public const string IncludeRuntimeSupportedAttributes = "PolySharpIncludeRuntimeSupportedAttributes";
/// <summary>
/// The MSBuild property for <see cref="Models.GenerationOptions.UseInteropServices2NamespaceForUnmanagedCallersOnlyAttribute"/>.
/// </summary>
public const string UseInteropServices2NamespaceForUnmanagedCallersOnlyAttribute = "PolySharpUseInteropServices2NamespaceForUnmanagedCallersOnlyAttribute";
/// <summary>
/// The MSBuild property for <see cref="Models.GenerationOptions.ExcludeGeneratedTypes"/>.
/// </summary>
public const string ExcludeGeneratedTypes = "PolySharpExcludeGeneratedTypes";
/// <summary>
/// The MSBuild property for <see cref="Models.GenerationOptions.AlwaysGeneratePolyfills"/>.
/// </summary>
public const string AlwaysGeneratePolyfills = "PolySharpAlwaysGeneratePolyfills";
/// <summary>
/// The MSBuild property for <see cref="Models.GenerationOptions.IncludeGeneratedTypes"/>.
/// </summary>
public const string IncludeGeneratedTypes = "PolySharpIncludeGeneratedTypes";
/// <summary>
/// The MSBuild property for <see cref="Models.GenerationOptions.ExcludeTypeForwardedToDeclarations"/>.
/// </summary>
public const string ExcludeTypeForwardedToDeclarations = "PolySharpExcludeTypeForwardedToDeclarations";
}