From a5a74c166c7f1aa375b2ccd2fb3da47665b6b59c Mon Sep 17 00:00:00 2001 From: Daniel Date: Mon, 30 May 2022 20:17:15 -0400 Subject: [PATCH] Fixed 2 build issues AEModule.build had 2 globs that would return some of the same files and have them duplicated in resources.zip files, which was not a major issue but found it while troubleshooting another issue. Also, WebFormsMVP had recently been made into a package but it was not added to the list of unversioned manifest and would get automatically versioned by the current DNN version upon build. --- Build/BuildScripts/AEModule.build | 2 +- Build/Tasks/unversionedManifests.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Build/BuildScripts/AEModule.build b/Build/BuildScripts/AEModule.build index e43e44646c4..2919c46000f 100644 --- a/Build/BuildScripts/AEModule.build +++ b/Build/BuildScripts/AEModule.build @@ -17,7 +17,7 @@ - + diff --git a/Build/Tasks/unversionedManifests.txt b/Build/Tasks/unversionedManifests.txt index c1174e1c4bc..b10211c57e5 100644 --- a/Build/Tasks/unversionedManifests.txt +++ b/Build/Tasks/unversionedManifests.txt @@ -1,5 +1,6 @@ DNN Platform/Components/MailKit/*.dnn DNN Platform/Components/Microsoft.*/**/*.dnn DNN Platform/Components/Newtonsoft/*.dnn +DNN Platform/Components/WebFormsMvp/*.dnn DNN Platform/JavaScript Libraries/**/*.dnn Temp/**/*.dnn \ No newline at end of file