-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathRemediationCodes.cs
More file actions
123 lines (115 loc) · 2.81 KB
/
RemediationCodes.cs
File metadata and controls
123 lines (115 loc) · 2.81 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
namespace PnP.Scanning.Core.Scanners
{
internal enum RemediationCodes
{
/// <summary>
/// WebPart page
/// </summary>
CP1,
/// <summary>
/// Wiki page
/// </summary>
CP2,
/// <summary>
/// Publishing page
/// </summary>
CP3,
/// <summary>
/// Blog page
/// </summary>
CP4,
/// <summary>
/// ASPX page
/// </summary>
CP5,
/// <summary>
/// Lists forced in classic via a setting
/// </summary>
CL1,
/// <summary>
/// Lists forced in classic via incompatible list customization
/// </summary>
CL2,
/// <summary>
/// Lists forced in classic via updated page hosting the list (e.g. added web part on the page) or because it's unghosted
/// </summary>
CL3,
/// <summary>
/// Lists for which there’s no modern alternative like Task and Calendar list
/// </summary>
CL4,
/// <summary>
/// List uses incompatible field type
/// </summary>
CL5,
/// <summary>
/// List uses incompatible view (gantt / calendar)
/// </summary>
CL6,
/// <summary>
/// Workflow 2013
/// </summary>
WF1,
/// <summary>
/// InfoPath 2013 List forms
/// </summary>
IF1,
/// <summary>
/// InfoPath 2013 Form libraries
/// </summary>
IF2,
/// <summary>
/// Blog site
/// </summary>
CS1,
/// <summary>
/// Publishing portal
/// </summary>
CS2,
/// <summary>
/// SharePoint hosted AddIn
/// </summary>
CE1,
/// <summary>
/// Provider hosted AddIn
/// </summary>
CE2,
/// <summary>
/// Custom master pages used
/// </summary>
CE3,
/// <summary>
/// Custom CSS used
/// </summary>
CE4,
/// <summary>
/// Custom themes
/// </summary>
CE5,
/// <summary>
/// Ribbon extension for lists via User Custom Actions
/// </summary>
CE6,
/// <summary>
/// Not used for the moment
/// </summary>
CE7,
/// <summary>
/// Embedding script via User Custom Actions
/// </summary>
CE8,
/// <summary>
/// Other ribbon/UI extensions via User Custom Actions
/// </summary>
CE9,
WP1,
/// <summary>
/// Web part without proper mapping
/// </summary>
WP2,
/// <summary>
/// Unknown web part type
/// </summary>
WP3,
}
}