-
Notifications
You must be signed in to change notification settings - Fork 10
/
Manifest.cs
58 lines (51 loc) · 1.3 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
using OrchardCore.Modules.Manifest;
[assembly: Module(
Name = "SEO",
Author = "Etch",
Website = "https://etchuk.com",
Version = "$(VersionNumber)"
)]
[assembly: Feature(
Id = "Etch.OrchardCore.SEO.Redirects",
Name = "Redirects",
Description = "Create 301 redirects.",
Dependencies = new[]
{
"OrchardCore.Title"
},
Category = "Content"
)]
[assembly: Feature(
Id = "Etch.OrchardCore.SEO.Redirects.Import",
Name = "Import Redirects",
Description = "Import 301 redirects from a spreadsheet.",
Dependencies = new[]
{
"Etch.OrchardCore.SEO.Redirects"
},
Category = "Content"
)]
[assembly: Feature(
Id = "Etch.OrchardCore.SEO.RobotsTxt",
Name = "Robots.txt",
Description = "Manage contents of robots.txt.",
Category = "Content"
)]
[assembly: Feature(
Id = "Etch.OrchardCore.SEO.HostnameRedirects",
Name = "Hostname Redirects",
Description = "Manage hostname redirects.",
Category = "Content"
)]
[assembly: Feature(
Id = "Etch.OrchardCore.SEO.MetaTags",
Name = "Meta Tags",
Dependencies = new[]
{
"OrchardCore.Autoroute",
"Etch.OrchardCore.Fields.Dictionary",
"OrchardCore.Media"
},
Description = "Manage meta tags for content items.",
Category = "Content"
)]