From 19e43a2da083f21308ac9cfa12e6b0a896db5cfc Mon Sep 17 00:00:00 2001 From: Brian Dukes Date: Tue, 28 Jun 2022 14:28:41 -0500 Subject: [PATCH] Add and update config files from NuGet --- .../Dnn.Modules.Console/web.config | 24 ++++++---- .../Azure/Dnn.AzureConnector.csproj | 1 + DNN Platform/Connectors/Azure/app.config | 11 +++++ .../Dnn.GoogleAnalyticsConnector.csproj | 1 + .../Connectors/GoogleAnalytics/app.config | 11 +++++ .../Dnn.GoogleTagManagerConnector.csproj | 1 + .../Connectors/GoogleTagManager/app.config | 11 +++++ .../Dnn.AuthServices.Jwt.csproj | 1 + DNN Platform/Dnn.AuthServices.Jwt/app.config | 11 +++++ .../DotNetNuke.Web.Deprecated.csproj | 1 + .../DotNetNuke.Web.Deprecated/app.config | 11 +++++ DNN Platform/DotNetNuke.Web.Mvc/app.config | 24 ++++++---- .../DotNetNuke.Web/DotNetNuke.Web.csproj | 1 + DNN Platform/DotNetNuke.Web/app.config | 11 +++++ .../DotNetNuke.Website.Deprecated.csproj | 1 + .../DotNetNuke.Website.Deprecated/app.config | 11 +++++ DNN Platform/Modules/CoreMessaging/web.config | 26 +++++----- DNN Platform/Modules/DigitalAssets/web.config | 26 +++++----- .../DnnExportImport/DnnExportImport.csproj | 1 + .../Modules/DnnExportImport/app.config | 11 +++++ DNN Platform/Modules/Groups/web.config | 26 +++++----- DNN Platform/Modules/HTML/web.config | 26 +++++----- .../Modules/HtmlEditorManager/web.config | 26 +++++----- DNN Platform/Modules/Journal/web.config | 26 +++++----- .../Modules/MemberDirectory/web.config | 26 +++++----- DNN Platform/Modules/RazorHost/web.config | 26 +++++----- .../Modules/ResourceManager/web.config | 34 ++++++------- .../Providers/FolderProviders/app.config | 48 ++++++++++--------- .../DNNConnect.CKE/web.config | 2 +- DNN Platform/Skins/Xcillion/web.config | 26 +++++----- DNN Platform/Tests/App.config | 8 +++- .../DNN.Integration.Test.Framework.csproj | 1 + .../DNN.Integration.Test.Framework/app.config | 11 +++++ .../DotNetNuke.Tests.AspNetCCP/App.config | 12 ++++- .../Tests/DotNetNuke.Tests.Content/app.config | 2 +- .../Tests/DotNetNuke.Tests.UI/app.config | 2 +- .../DotNetNuke.Tests.Utilities.csproj | 1 + .../DotNetNuke.Tests.Utilities/app.config | 11 +++++ .../Tests/DotNetNuke.Tests.Web.Mvc/app.config | 2 +- .../Tests/DotNetNuke.Tests.Web/App.config | 2 +- DNN Platform/Website/Install/Web.config | 30 +++++++----- .../Dnn.PersonaBar.Extensions/web.config | 2 +- .../Dnn.EditBar.Library.csproj | 1 + .../EditBar/Dnn.EditBar.Library/app.config | 11 +++++ .../EditBar/Dnn.EditBar.UI/app.config | 2 +- .../Library/Dnn.PersonaBar.Library/app.config | 2 +- .../Library/Dnn.PersonaBar.UI/app.config | 2 +- .../Dnn.PersonaBar.ConfigConsole.Tests.csproj | 1 + .../app.config | 15 ++++++ .../Dnn.PersonaBar.Pages.Tests/app.config | 2 +- .../Dnn.PersonaBar.Security.Tests/app.config | 2 +- .../Dnn.PersonaBar.Users.Tests/app.config | 2 +- 52 files changed, 401 insertions(+), 185 deletions(-) create mode 100644 DNN Platform/Connectors/Azure/app.config create mode 100644 DNN Platform/Connectors/GoogleAnalytics/app.config create mode 100644 DNN Platform/Connectors/GoogleTagManager/app.config create mode 100644 DNN Platform/Dnn.AuthServices.Jwt/app.config create mode 100644 DNN Platform/DotNetNuke.Web.Deprecated/app.config create mode 100644 DNN Platform/DotNetNuke.Web/app.config create mode 100644 DNN Platform/DotNetNuke.Website.Deprecated/app.config create mode 100644 DNN Platform/Modules/DnnExportImport/app.config create mode 100644 DNN Platform/Tests/DNN.Integration.Test.Framework/app.config create mode 100644 DNN Platform/Tests/DotNetNuke.Tests.Utilities/app.config create mode 100644 Dnn.AdminExperience/EditBar/Dnn.EditBar.Library/app.config create mode 100644 Dnn.AdminExperience/Tests/Dnn.PersonaBar.ConfigConsole.Tests/app.config diff --git a/DNN Platform/Admin Modules/Dnn.Modules.Console/web.config b/DNN Platform/Admin Modules/Dnn.Modules.Console/web.config index 931974a0ba4..7d663d08216 100644 --- a/DNN Platform/Admin Modules/Dnn.Modules.Console/web.config +++ b/DNN Platform/Admin Modules/Dnn.Modules.Console/web.config @@ -1,11 +1,15 @@ - - - - - - - - - - + + + + + + + + + + + + + + \ No newline at end of file diff --git a/DNN Platform/Connectors/Azure/Dnn.AzureConnector.csproj b/DNN Platform/Connectors/Azure/Dnn.AzureConnector.csproj index d7322b81816..8309a709be7 100644 --- a/DNN Platform/Connectors/Azure/Dnn.AzureConnector.csproj +++ b/DNN Platform/Connectors/Azure/Dnn.AzureConnector.csproj @@ -103,6 +103,7 @@ stylecop.json + diff --git a/DNN Platform/Connectors/Azure/app.config b/DNN Platform/Connectors/Azure/app.config new file mode 100644 index 00000000000..d9d17a63bb7 --- /dev/null +++ b/DNN Platform/Connectors/Azure/app.config @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/DNN Platform/Connectors/GoogleAnalytics/Dnn.GoogleAnalyticsConnector.csproj b/DNN Platform/Connectors/GoogleAnalytics/Dnn.GoogleAnalyticsConnector.csproj index a062c94adad..ff9ef026d71 100644 --- a/DNN Platform/Connectors/GoogleAnalytics/Dnn.GoogleAnalyticsConnector.csproj +++ b/DNN Platform/Connectors/GoogleAnalytics/Dnn.GoogleAnalyticsConnector.csproj @@ -88,6 +88,7 @@ stylecop.json + diff --git a/DNN Platform/Connectors/GoogleAnalytics/app.config b/DNN Platform/Connectors/GoogleAnalytics/app.config new file mode 100644 index 00000000000..d9d17a63bb7 --- /dev/null +++ b/DNN Platform/Connectors/GoogleAnalytics/app.config @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/DNN Platform/Connectors/GoogleTagManager/Dnn.GoogleTagManagerConnector.csproj b/DNN Platform/Connectors/GoogleTagManager/Dnn.GoogleTagManagerConnector.csproj index 6d426d823d5..8a5dfbca07b 100644 --- a/DNN Platform/Connectors/GoogleTagManager/Dnn.GoogleTagManagerConnector.csproj +++ b/DNN Platform/Connectors/GoogleTagManager/Dnn.GoogleTagManagerConnector.csproj @@ -89,6 +89,7 @@ stylecop.json + diff --git a/DNN Platform/Connectors/GoogleTagManager/app.config b/DNN Platform/Connectors/GoogleTagManager/app.config new file mode 100644 index 00000000000..d9d17a63bb7 --- /dev/null +++ b/DNN Platform/Connectors/GoogleTagManager/app.config @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/DNN Platform/Dnn.AuthServices.Jwt/Dnn.AuthServices.Jwt.csproj b/DNN Platform/Dnn.AuthServices.Jwt/Dnn.AuthServices.Jwt.csproj index 66042b549a8..fa996bea59c 100644 --- a/DNN Platform/Dnn.AuthServices.Jwt/Dnn.AuthServices.Jwt.csproj +++ b/DNN Platform/Dnn.AuthServices.Jwt/Dnn.AuthServices.Jwt.csproj @@ -88,6 +88,7 @@ stylecop.json + Designer diff --git a/DNN Platform/Dnn.AuthServices.Jwt/app.config b/DNN Platform/Dnn.AuthServices.Jwt/app.config new file mode 100644 index 00000000000..d9d17a63bb7 --- /dev/null +++ b/DNN Platform/Dnn.AuthServices.Jwt/app.config @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/DNN Platform/DotNetNuke.Web.Deprecated/DotNetNuke.Web.Deprecated.csproj b/DNN Platform/DotNetNuke.Web.Deprecated/DotNetNuke.Web.Deprecated.csproj index fb2be31c0fd..fc9d95b4343 100644 --- a/DNN Platform/DotNetNuke.Web.Deprecated/DotNetNuke.Web.Deprecated.csproj +++ b/DNN Platform/DotNetNuke.Web.Deprecated/DotNetNuke.Web.Deprecated.csproj @@ -288,6 +288,7 @@ stylecop.json + Designer diff --git a/DNN Platform/DotNetNuke.Web.Deprecated/app.config b/DNN Platform/DotNetNuke.Web.Deprecated/app.config new file mode 100644 index 00000000000..d9d17a63bb7 --- /dev/null +++ b/DNN Platform/DotNetNuke.Web.Deprecated/app.config @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/DNN Platform/DotNetNuke.Web.Mvc/app.config b/DNN Platform/DotNetNuke.Web.Mvc/app.config index 373d9cdf1d1..ee87904d433 100644 --- a/DNN Platform/DotNetNuke.Web.Mvc/app.config +++ b/DNN Platform/DotNetNuke.Web.Mvc/app.config @@ -1,11 +1,15 @@ - - - - - - - - - - + + + + + + + + + + + + + + \ No newline at end of file diff --git a/DNN Platform/DotNetNuke.Web/DotNetNuke.Web.csproj b/DNN Platform/DotNetNuke.Web/DotNetNuke.Web.csproj index a68fd233127..08f24d48879 100644 --- a/DNN Platform/DotNetNuke.Web/DotNetNuke.Web.csproj +++ b/DNN Platform/DotNetNuke.Web/DotNetNuke.Web.csproj @@ -425,6 +425,7 @@ stylecop.json + Designer diff --git a/DNN Platform/DotNetNuke.Web/app.config b/DNN Platform/DotNetNuke.Web/app.config new file mode 100644 index 00000000000..d9d17a63bb7 --- /dev/null +++ b/DNN Platform/DotNetNuke.Web/app.config @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/DNN Platform/DotNetNuke.Website.Deprecated/DotNetNuke.Website.Deprecated.csproj b/DNN Platform/DotNetNuke.Website.Deprecated/DotNetNuke.Website.Deprecated.csproj index 24c380d2a76..2779d09c9b7 100644 --- a/DNN Platform/DotNetNuke.Website.Deprecated/DotNetNuke.Website.Deprecated.csproj +++ b/DNN Platform/DotNetNuke.Website.Deprecated/DotNetNuke.Website.Deprecated.csproj @@ -190,6 +190,7 @@ stylecop.json + Designer diff --git a/DNN Platform/DotNetNuke.Website.Deprecated/app.config b/DNN Platform/DotNetNuke.Website.Deprecated/app.config new file mode 100644 index 00000000000..d9d17a63bb7 --- /dev/null +++ b/DNN Platform/DotNetNuke.Website.Deprecated/app.config @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/DNN Platform/Modules/CoreMessaging/web.config b/DNN Platform/Modules/CoreMessaging/web.config index 962b85f24ef..5a152070121 100644 --- a/DNN Platform/Modules/CoreMessaging/web.config +++ b/DNN Platform/Modules/CoreMessaging/web.config @@ -1,11 +1,15 @@ - - - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/DNN Platform/Modules/DigitalAssets/web.config b/DNN Platform/Modules/DigitalAssets/web.config index 1b3cf4537a7..49d94d8a958 100644 --- a/DNN Platform/Modules/DigitalAssets/web.config +++ b/DNN Platform/Modules/DigitalAssets/web.config @@ -1,11 +1,15 @@ - - - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/DNN Platform/Modules/DnnExportImport/DnnExportImport.csproj b/DNN Platform/Modules/DnnExportImport/DnnExportImport.csproj index 1b654666401..7ab4a96b414 100644 --- a/DNN Platform/Modules/DnnExportImport/DnnExportImport.csproj +++ b/DNN Platform/Modules/DnnExportImport/DnnExportImport.csproj @@ -163,6 +163,7 @@ stylecop.json + diff --git a/DNN Platform/Modules/DnnExportImport/app.config b/DNN Platform/Modules/DnnExportImport/app.config new file mode 100644 index 00000000000..d9d17a63bb7 --- /dev/null +++ b/DNN Platform/Modules/DnnExportImport/app.config @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/DNN Platform/Modules/Groups/web.config b/DNN Platform/Modules/Groups/web.config index 27ab2d72e82..49d94d8a958 100644 --- a/DNN Platform/Modules/Groups/web.config +++ b/DNN Platform/Modules/Groups/web.config @@ -1,11 +1,15 @@ - - - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/DNN Platform/Modules/HTML/web.config b/DNN Platform/Modules/HTML/web.config index 1b3cf4537a7..49d94d8a958 100644 --- a/DNN Platform/Modules/HTML/web.config +++ b/DNN Platform/Modules/HTML/web.config @@ -1,11 +1,15 @@ - - - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/DNN Platform/Modules/HtmlEditorManager/web.config b/DNN Platform/Modules/HtmlEditorManager/web.config index 1b3cf4537a7..49d94d8a958 100644 --- a/DNN Platform/Modules/HtmlEditorManager/web.config +++ b/DNN Platform/Modules/HtmlEditorManager/web.config @@ -1,11 +1,15 @@ - - - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/DNN Platform/Modules/Journal/web.config b/DNN Platform/Modules/Journal/web.config index 1b3cf4537a7..49d94d8a958 100644 --- a/DNN Platform/Modules/Journal/web.config +++ b/DNN Platform/Modules/Journal/web.config @@ -1,11 +1,15 @@ - - - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/DNN Platform/Modules/MemberDirectory/web.config b/DNN Platform/Modules/MemberDirectory/web.config index 1b3cf4537a7..49d94d8a958 100644 --- a/DNN Platform/Modules/MemberDirectory/web.config +++ b/DNN Platform/Modules/MemberDirectory/web.config @@ -1,11 +1,15 @@ - - - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/DNN Platform/Modules/RazorHost/web.config b/DNN Platform/Modules/RazorHost/web.config index 1b3cf4537a7..49d94d8a958 100644 --- a/DNN Platform/Modules/RazorHost/web.config +++ b/DNN Platform/Modules/RazorHost/web.config @@ -1,11 +1,15 @@ - - - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/DNN Platform/Modules/ResourceManager/web.config b/DNN Platform/Modules/ResourceManager/web.config index f919ed44340..7d4c43d8a9a 100644 --- a/DNN Platform/Modules/ResourceManager/web.config +++ b/DNN Platform/Modules/ResourceManager/web.config @@ -1,17 +1,17 @@ - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + diff --git a/DNN Platform/Providers/FolderProviders/app.config b/DNN Platform/Providers/FolderProviders/app.config index ab37d7418e7..f0b5f4b6d0f 100644 --- a/DNN Platform/Providers/FolderProviders/app.config +++ b/DNN Platform/Providers/FolderProviders/app.config @@ -1,23 +1,27 @@ - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/DNN Platform/Providers/HtmlEditorProviders/DNNConnect.CKE/web.config b/DNN Platform/Providers/HtmlEditorProviders/DNNConnect.CKE/web.config index 5fca51117d5..c76a9d093ec 100644 --- a/DNN Platform/Providers/HtmlEditorProviders/DNNConnect.CKE/web.config +++ b/DNN Platform/Providers/HtmlEditorProviders/DNNConnect.CKE/web.config @@ -16,7 +16,7 @@ - + diff --git a/DNN Platform/Skins/Xcillion/web.config b/DNN Platform/Skins/Xcillion/web.config index 1b3cf4537a7..49d94d8a958 100644 --- a/DNN Platform/Skins/Xcillion/web.config +++ b/DNN Platform/Skins/Xcillion/web.config @@ -1,11 +1,15 @@ - - - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/DNN Platform/Tests/App.config b/DNN Platform/Tests/App.config index 408737941cf..fbe4d76de3c 100644 --- a/DNN Platform/Tests/App.config +++ b/DNN Platform/Tests/App.config @@ -205,7 +205,7 @@ - + @@ -221,7 +221,11 @@ - + + + + + diff --git a/DNN Platform/Tests/DNN.Integration.Test.Framework/DNN.Integration.Test.Framework.csproj b/DNN Platform/Tests/DNN.Integration.Test.Framework/DNN.Integration.Test.Framework.csproj index 49f2fa57a82..22812acdaad 100644 --- a/DNN Platform/Tests/DNN.Integration.Test.Framework/DNN.Integration.Test.Framework.csproj +++ b/DNN Platform/Tests/DNN.Integration.Test.Framework/DNN.Integration.Test.Framework.csproj @@ -115,6 +115,7 @@ stylecop.json + diff --git a/DNN Platform/Tests/DNN.Integration.Test.Framework/app.config b/DNN Platform/Tests/DNN.Integration.Test.Framework/app.config new file mode 100644 index 00000000000..d9d17a63bb7 --- /dev/null +++ b/DNN Platform/Tests/DNN.Integration.Test.Framework/app.config @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/DNN Platform/Tests/DotNetNuke.Tests.AspNetCCP/App.config b/DNN Platform/Tests/DotNetNuke.Tests.AspNetCCP/App.config index 99ddf3e08e6..d9d17a63bb7 100644 --- a/DNN Platform/Tests/DotNetNuke.Tests.AspNetCCP/App.config +++ b/DNN Platform/Tests/DotNetNuke.Tests.AspNetCCP/App.config @@ -1,3 +1,11 @@ - - + + + + + + + + + + \ No newline at end of file diff --git a/DNN Platform/Tests/DotNetNuke.Tests.Content/app.config b/DNN Platform/Tests/DotNetNuke.Tests.Content/app.config index d3f880af864..7b393d83301 100644 --- a/DNN Platform/Tests/DotNetNuke.Tests.Content/app.config +++ b/DNN Platform/Tests/DotNetNuke.Tests.Content/app.config @@ -20,7 +20,7 @@ - + diff --git a/DNN Platform/Tests/DotNetNuke.Tests.UI/app.config b/DNN Platform/Tests/DotNetNuke.Tests.UI/app.config index faeaf001de7..d9d17a63bb7 100644 --- a/DNN Platform/Tests/DotNetNuke.Tests.UI/app.config +++ b/DNN Platform/Tests/DotNetNuke.Tests.UI/app.config @@ -4,7 +4,7 @@ - + diff --git a/DNN Platform/Tests/DotNetNuke.Tests.Utilities/DotNetNuke.Tests.Utilities.csproj b/DNN Platform/Tests/DotNetNuke.Tests.Utilities/DotNetNuke.Tests.Utilities.csproj index e5f0bd700c0..1ddb0ab07c8 100644 --- a/DNN Platform/Tests/DotNetNuke.Tests.Utilities/DotNetNuke.Tests.Utilities.csproj +++ b/DNN Platform/Tests/DotNetNuke.Tests.Utilities/DotNetNuke.Tests.Utilities.csproj @@ -154,6 +154,7 @@ DotNetNuke.config PreserveNewest + diff --git a/DNN Platform/Tests/DotNetNuke.Tests.Utilities/app.config b/DNN Platform/Tests/DotNetNuke.Tests.Utilities/app.config new file mode 100644 index 00000000000..d9d17a63bb7 --- /dev/null +++ b/DNN Platform/Tests/DotNetNuke.Tests.Utilities/app.config @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/DNN Platform/Tests/DotNetNuke.Tests.Web.Mvc/app.config b/DNN Platform/Tests/DotNetNuke.Tests.Web.Mvc/app.config index 882f3ca7cd5..2fd799c5541 100644 --- a/DNN Platform/Tests/DotNetNuke.Tests.Web.Mvc/app.config +++ b/DNN Platform/Tests/DotNetNuke.Tests.Web.Mvc/app.config @@ -24,7 +24,7 @@ - + diff --git a/DNN Platform/Tests/DotNetNuke.Tests.Web/App.config b/DNN Platform/Tests/DotNetNuke.Tests.Web/App.config index 928751a9acb..3ba879f1807 100644 --- a/DNN Platform/Tests/DotNetNuke.Tests.Web/App.config +++ b/DNN Platform/Tests/DotNetNuke.Tests.Web/App.config @@ -8,7 +8,7 @@ - + diff --git a/DNN Platform/Website/Install/Web.config b/DNN Platform/Website/Install/Web.config index 102c4b2909d..69b28ffee7c 100644 --- a/DNN Platform/Website/Install/Web.config +++ b/DNN Platform/Website/Install/Web.config @@ -1,11 +1,19 @@ - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + diff --git a/Dnn.AdminExperience/Dnn.PersonaBar.Extensions/web.config b/Dnn.AdminExperience/Dnn.PersonaBar.Extensions/web.config index faeaf001de7..d9d17a63bb7 100644 --- a/Dnn.AdminExperience/Dnn.PersonaBar.Extensions/web.config +++ b/Dnn.AdminExperience/Dnn.PersonaBar.Extensions/web.config @@ -4,7 +4,7 @@ - + diff --git a/Dnn.AdminExperience/EditBar/Dnn.EditBar.Library/Dnn.EditBar.Library.csproj b/Dnn.AdminExperience/EditBar/Dnn.EditBar.Library/Dnn.EditBar.Library.csproj index 7423838fc04..8927150fa01 100644 --- a/Dnn.AdminExperience/EditBar/Dnn.EditBar.Library/Dnn.EditBar.Library.csproj +++ b/Dnn.AdminExperience/EditBar/Dnn.EditBar.Library/Dnn.EditBar.Library.csproj @@ -83,6 +83,7 @@ + diff --git a/Dnn.AdminExperience/EditBar/Dnn.EditBar.Library/app.config b/Dnn.AdminExperience/EditBar/Dnn.EditBar.Library/app.config new file mode 100644 index 00000000000..d9d17a63bb7 --- /dev/null +++ b/Dnn.AdminExperience/EditBar/Dnn.EditBar.Library/app.config @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/Dnn.AdminExperience/EditBar/Dnn.EditBar.UI/app.config b/Dnn.AdminExperience/EditBar/Dnn.EditBar.UI/app.config index de0fc32d34e..40e08fb1194 100644 --- a/Dnn.AdminExperience/EditBar/Dnn.EditBar.UI/app.config +++ b/Dnn.AdminExperience/EditBar/Dnn.EditBar.UI/app.config @@ -4,7 +4,7 @@ - + diff --git a/Dnn.AdminExperience/Library/Dnn.PersonaBar.Library/app.config b/Dnn.AdminExperience/Library/Dnn.PersonaBar.Library/app.config index 91e4a216beb..53d99657444 100644 --- a/Dnn.AdminExperience/Library/Dnn.PersonaBar.Library/app.config +++ b/Dnn.AdminExperience/Library/Dnn.PersonaBar.Library/app.config @@ -4,7 +4,7 @@ - + diff --git a/Dnn.AdminExperience/Library/Dnn.PersonaBar.UI/app.config b/Dnn.AdminExperience/Library/Dnn.PersonaBar.UI/app.config index faeaf001de7..d9d17a63bb7 100644 --- a/Dnn.AdminExperience/Library/Dnn.PersonaBar.UI/app.config +++ b/Dnn.AdminExperience/Library/Dnn.PersonaBar.UI/app.config @@ -4,7 +4,7 @@ - + diff --git a/Dnn.AdminExperience/Tests/Dnn.PersonaBar.ConfigConsole.Tests/Dnn.PersonaBar.ConfigConsole.Tests.csproj b/Dnn.AdminExperience/Tests/Dnn.PersonaBar.ConfigConsole.Tests/Dnn.PersonaBar.ConfigConsole.Tests.csproj index 3790e5a5396..179bae3108a 100644 --- a/Dnn.AdminExperience/Tests/Dnn.PersonaBar.ConfigConsole.Tests/Dnn.PersonaBar.ConfigConsole.Tests.csproj +++ b/Dnn.AdminExperience/Tests/Dnn.PersonaBar.ConfigConsole.Tests/Dnn.PersonaBar.ConfigConsole.Tests.csproj @@ -99,6 +99,7 @@ stylecop.json + diff --git a/Dnn.AdminExperience/Tests/Dnn.PersonaBar.ConfigConsole.Tests/app.config b/Dnn.AdminExperience/Tests/Dnn.PersonaBar.ConfigConsole.Tests/app.config new file mode 100644 index 00000000000..b0d92a71226 --- /dev/null +++ b/Dnn.AdminExperience/Tests/Dnn.PersonaBar.ConfigConsole.Tests/app.config @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Dnn.AdminExperience/Tests/Dnn.PersonaBar.Pages.Tests/app.config b/Dnn.AdminExperience/Tests/Dnn.PersonaBar.Pages.Tests/app.config index faeaf001de7..d9d17a63bb7 100644 --- a/Dnn.AdminExperience/Tests/Dnn.PersonaBar.Pages.Tests/app.config +++ b/Dnn.AdminExperience/Tests/Dnn.PersonaBar.Pages.Tests/app.config @@ -4,7 +4,7 @@ - + diff --git a/Dnn.AdminExperience/Tests/Dnn.PersonaBar.Security.Tests/app.config b/Dnn.AdminExperience/Tests/Dnn.PersonaBar.Security.Tests/app.config index faeaf001de7..d9d17a63bb7 100644 --- a/Dnn.AdminExperience/Tests/Dnn.PersonaBar.Security.Tests/app.config +++ b/Dnn.AdminExperience/Tests/Dnn.PersonaBar.Security.Tests/app.config @@ -4,7 +4,7 @@ - + diff --git a/Dnn.AdminExperience/Tests/Dnn.PersonaBar.Users.Tests/app.config b/Dnn.AdminExperience/Tests/Dnn.PersonaBar.Users.Tests/app.config index faeaf001de7..d9d17a63bb7 100644 --- a/Dnn.AdminExperience/Tests/Dnn.PersonaBar.Users.Tests/app.config +++ b/Dnn.AdminExperience/Tests/Dnn.PersonaBar.Users.Tests/app.config @@ -4,7 +4,7 @@ - +