From 47f6079ed87f0bb8ea5a20efba64c3fb0375e433 Mon Sep 17 00:00:00 2001 From: nvisionative Date: Thu, 3 Dec 2015 13:57:10 -0500 Subject: [PATCH] Add support for SPA and MVC module development 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. --- src/DnnPackager/content/manifest.dnn | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/DnnPackager/content/manifest.dnn b/src/DnnPackager/content/manifest.dnn index 32a5027..d3feb43 100644 --- a/src/DnnPackager/content/manifest.dnn +++ b/src/DnnPackager/content/manifest.dnn @@ -38,7 +38,7 @@ - DesktopModules/[FolderName]/[YourPathToDefaultView].ascx + [YourControllerOrPathToView]/[YourViewFileName].[YourViewFileExtension] False [Default title when added to page] View @@ -47,7 +47,7 @@ settings - DesktopModules/[FolderName]/[YourPathToSettings].ascx + [YourControllerOrPathToSettings]/[YourSettingsFileName].[YourSettingsFileExtension] False [Default settings title] View @@ -119,4 +119,4 @@ --> - \ No newline at end of file +