-
Notifications
You must be signed in to change notification settings - Fork 406
Expand file tree
/
Copy pathSourceType.cs
More file actions
26 lines (23 loc) · 798 Bytes
/
SourceType.cs
File metadata and controls
26 lines (23 loc) · 798 Bytes
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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
namespace Microsoft.Windows.PowerShell.ScriptAnalyzer.Generic
{
/// <summary>
/// Represents a source name of a script analyzer rule.
/// </summary>
public enum SourceType : uint
{
/// <summary>
/// BUILTIN: Indicates the script analyzer rule is contributed as a built-in rule.
/// </summary>
Builtin = 0,
/// <summary>
/// MANAGED: Indicates the script analyzer rule is contributed as a managed rule.
/// </summary>
Managed = 1,
/// <summary>
/// MODULE: Indicates the script analyzer rule is contributed as a Windows PowerShell module rule.
/// </summary>
Module = 2,
};
}