-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for SPA and MVC module development #23
Conversation
Essentially the only thing that changes in the DNN manifest for SPA and MVC modules in DNN 8 are the controlSrc tags. ASCX files are no longer the only options. See the following for reference: ##SPA## * https://github.com/jbrinkman/DNN8Templates/blob/master/src/DnnSpaModule/DnnSpaModule.dnn ##MVC## * https://github.com/jbrinkman/DNN8Templates/blob/master/src/DnnMvcModule/DnnMvcModule.dnn As a result of this change, you may want to update your Getting Started blog entry.
Add support for SPA and MVC module development
Ah I see what you have done there. |
Add support for SPA and MVC module development
You are very welcome. I am stoked about your solution here. Now we just need to get NuGet packages created for SPA and MVC scaffolding! ;-) |
Would you mind letting me know when this gets released? I noticed in my testing last night that these changes must not have been made just yet. |
Thanks again for the PR! |
|
No rush at all - was just curious to know when it is released. Thanks man! I have been talking up your solution within the DNN Community and quite a few people have showed interest for this approach. Now we just need to see who can crank out a traditional, SPA and MVC package for the extra scaffolding. |
+10000 for spreading the word! ;) |
You are welcome. The MVC package you are seeing is simply a reference to DotNetNuke.Web.Mvc.dll (which would be needed for MVC development pattern. So, unfortunately these new packages are not what they may have originally seemed to be (necessary nonetheless though). ;-) |
Essentially the only thing that changes in the DNN manifest for SPA and MVC modules in DNN 8 are the controlSrc tags. ASCX files are no longer the only options. See the following for reference:
SPA
MVC