Skip to content
Discussion options

You must be logged in to vote

Solved. You need to set the right configurations (assembly: Module & assembly: Feature) in module's manifest file.

Manifest.cs

using OrchardCore.Modules.Manifest;

[assembly: Module(
    Name = "Content",
    Author = "My Self",
    Website = "https://mysite.com",
    Version = "0.0.1"
)]

[assembly: Feature(
    Id = "MyApp.Content",
    Name = "Content",
    Description = "Module to handle content definitions for mysite.com.",
    Dependencies = ["OrchardCore.Widgets", "OrchardCore.Flows"],
    Category = "Content"
)]

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by lamualfa
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant