forked from Lombiq/Helpful-Extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathManifest.cs
82 lines (74 loc) · 2.29 KB
/
Manifest.cs
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
using OrchardCore.Modules.Manifest;
using static Lombiq.HelpfulExtensions.FeatureIds;
[assembly: Module(
Name = "Lombiq Helpful Extensions",
Author = "Lombiq Technologies",
Version = "3.0.1",
Website = "https://github.com/Lombiq/Helpful-Extensions"
)]
[assembly: Feature(
Id = CodeGeneration,
Name = "Lombiq Helpful Extensions - Code Generation Helpful Extensions",
Category = "Development",
Description = "Generates migrations from content type definitions.",
Dependencies = new[]
{
"OrchardCore.Resources",
}
)]
[assembly: Feature(
Id = Flows,
Name = "Lombiq Helpful Extensions - Flows Helpful Extensions",
Category = "Content",
Description = "Adds additional styling capabilities to Flow Part.",
Dependencies = new[]
{
"OrchardCore.Flows",
}
)]
[assembly: Feature(
Id = Widgets,
Name = "Lombiq Helpful Extensions - Helpful Widgets",
Category = "Content",
Description = "Adds helpful widgets such as Container or Liquid widgets.",
Dependencies = new[]
{
"OrchardCore.Html",
"OrchardCore.Liquid",
"OrchardCore.Title",
}
)]
[assembly: Feature(
Id = ContentTypes,
Name = "Lombiq Helpful Extensions - Helpful Content Types",
Category = "Content",
Description = "Adds helpful content types such as Page.",
Dependencies = new[]
{
"OrchardCore.Autoroute",
"OrchardCore.Flows",
"OrchardCore.Title",
}
)]
[assembly: Feature(
Id = ShapeTracing,
Name = "Lombiq Helpful Extensions - Shape Tracing Helpful Extensions",
Category = "Development",
Description = "Adds a dump of metadata to the output about every shape."
)]
[assembly: Feature(
Id = Security,
Name = "Lombiq Helpful Extensions - Security Helpful Extensions",
Category = "Security",
Description = "Adds a content type definition setting and authorization handler for richer security options."
)]
[assembly: Feature(
Id = Emails,
Name = "Lombiq Helpful Extensions - Emails",
Category = "Messaging",
Description = "Adds shape-based email template rendering and helpful email sending services.",
Dependencies = new[]
{
"OrchardCore.Email",
}
)]