Orchard Core Module vs Razor Class Library #11355
-
I am planning to rebuild some asp.net web forms apps in .net core mvc. I would like to build each feature as separate components that can be added to the new app. The Orchard Core framework seems perfect for this but it also seems like it could be done with razor class libraries also. What would some advantages be to using Orchard Core Modules instead of Razor Class Libraries? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
OC modules are using RCL, please check the project SDK its |
Beta Was this translation helpful? Give feedback.
-
Using Orchard Core Module
Using RCL
|
Beta Was this translation helpful? Give feedback.
Using Orchard Core Module
Areas
folder in project for separate features.Features
with[Feature]
attribute that you can enable/disable separately.cshtml
source files are precompiled but are also embedded into assembly.Using RCL