From 23d40ac1a6b7e2ff91307bf932bfe03466facc0a Mon Sep 17 00:00:00 2001 From: Daniel Date: Fri, 14 Jul 2023 23:10:57 -0400 Subject: [PATCH] Fixed an issue where DnnPlugins package was not being produced The declaration in thirdparty.json was missed in #5724 Closes #5740 --- Build/Tasks/thirdparty.json | 123 +++++++++++++++++++----------------- 1 file changed, 64 insertions(+), 59 deletions(-) diff --git a/Build/Tasks/thirdparty.json b/Build/Tasks/thirdparty.json index 4e36fdfd7c3..575986874cd 100644 --- a/Build/Tasks/thirdparty.json +++ b/Build/Tasks/thirdparty.json @@ -1,59 +1,64 @@ -[ - { - "name": "HoverIntent", - "folder": "DNN Platform/JavaScript Libraries/HoverIntent/", - "destination": "Install/JavaScriptLibrary" - }, - { - "name": "jQuery", - "folder": "DNN Platform/JavaScript Libraries/jQuery/", - "destination": "Install/JavaScriptLibrary" - }, - { - "name": "jQuery.Fileupload", - "folder": "DNN Platform/JavaScript Libraries/jQuery.Fileupload/", - "destination": "Install/JavaScriptLibrary" - }, - { - "name": "jQuery.iframe-transport", - "folder": "DNN Platform/JavaScript Libraries/jQuery.iframe-transport/", - "destination": "Install/JavaScriptLibrary" - }, - { - "name": "jQueryMigrate", - "folder": "DNN Platform/JavaScript Libraries/jQueryMigrate/", - "destination": "Install/JavaScriptLibrary" - }, - { - "name": "jQueryUI", - "folder": "DNN Platform/JavaScript Libraries/jQueryUI/", - "destination": "Install/JavaScriptLibrary" - }, - { - "name": "Knockout", - "folder": "DNN Platform/JavaScript Libraries/Knockout/", - "destination": "Install/JavaScriptLibrary" - }, - { - "name": "KnockoutMapping", - "folder": "DNN Platform/JavaScript Libraries/KnockoutMapping/", - "destination": "Install/JavaScriptLibrary" - }, - { - "name": "Selectize", - "folder": "DNN Platform/JavaScript Libraries/Selectize/", - "destination": "Install/JavaScriptLibrary" - }, - { - "name": "Microsoft.CodeDom.Providers.DotNetCompilerPlatform", - "folder": "DNN Platform/Components/Microsoft.CodeDom.Providers.DotNetCompilerPlatform/", - "destination": "Install/Library", - "extension": "resources" - }, - { - "name": "MicrosoftFileSystemGlobbing", - "folder": "DNN Platform/Components/Microsoft.Extensions.FileSystemGlobbing/", - "destination": "Install/Library", - "excludes": [ "**/*.xml" ] - } -] +[ + { + "name": "DnnPlugins", + "folder": "DNN Platform/JavaScript Libraries/DnnPlugins/", + "destination": "Install/JavaScriptLibrary" + }, + { + "name": "HoverIntent", + "folder": "DNN Platform/JavaScript Libraries/HoverIntent/", + "destination": "Install/JavaScriptLibrary" + }, + { + "name": "jQuery", + "folder": "DNN Platform/JavaScript Libraries/jQuery/", + "destination": "Install/JavaScriptLibrary" + }, + { + "name": "jQuery.Fileupload", + "folder": "DNN Platform/JavaScript Libraries/jQuery.Fileupload/", + "destination": "Install/JavaScriptLibrary" + }, + { + "name": "jQuery.iframe-transport", + "folder": "DNN Platform/JavaScript Libraries/jQuery.iframe-transport/", + "destination": "Install/JavaScriptLibrary" + }, + { + "name": "jQueryMigrate", + "folder": "DNN Platform/JavaScript Libraries/jQueryMigrate/", + "destination": "Install/JavaScriptLibrary" + }, + { + "name": "jQueryUI", + "folder": "DNN Platform/JavaScript Libraries/jQueryUI/", + "destination": "Install/JavaScriptLibrary" + }, + { + "name": "Knockout", + "folder": "DNN Platform/JavaScript Libraries/Knockout/", + "destination": "Install/JavaScriptLibrary" + }, + { + "name": "KnockoutMapping", + "folder": "DNN Platform/JavaScript Libraries/KnockoutMapping/", + "destination": "Install/JavaScriptLibrary" + }, + { + "name": "Selectize", + "folder": "DNN Platform/JavaScript Libraries/Selectize/", + "destination": "Install/JavaScriptLibrary" + }, + { + "name": "Microsoft.CodeDom.Providers.DotNetCompilerPlatform", + "folder": "DNN Platform/Components/Microsoft.CodeDom.Providers.DotNetCompilerPlatform/", + "destination": "Install/Library", + "extension": "resources" + }, + { + "name": "MicrosoftFileSystemGlobbing", + "folder": "DNN Platform/Components/Microsoft.Extensions.FileSystemGlobbing/", + "destination": "Install/Library", + "excludes": [ "**/*.xml" ] + } +]