forked from OrchardCMS/OrchardCore.Commerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathManifest.cs
33 lines (30 loc) · 928 Bytes
/
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
using OrchardCore.Commerce;
using OrchardCore.Modules.Manifest;
[assembly: Module(
Name = "OrchardCore.Commerce",
Author = "The Orchard Team",
Website = "https://github.com/OrchardCMS/OrchardCore.Commerce",
Version = "0.0.1",
Description = "The commerce module for Orchard Core."
)]
[assembly: Feature(
Id = CommerceConstants.Features.Core,
Name = "Orchard Core Commerce",
Category = "Commerce",
Description = "Registers the core components used by the Commerce features.",
Dependencies = new[]
{
"OrchardCore.Contents"
}
)]
[assembly: Feature(
Id = CommerceConstants.Features.SessionCartStorage,
Name = "Orchard Core Commerce Session Cart Storage",
Category = "Commerce",
Description = "Registers session-based shopping cart persistence.",
Dependencies = new[]
{
"OrchardCore.Contents",
CommerceConstants.Features.Core
}
)]