From 047f3320fa6311b3d294c62bec3de03694ad25e5 Mon Sep 17 00:00:00 2001 From: kimcu-on-thenet Date: Tue, 14 May 2019 17:23:53 +0700 Subject: [PATCH 1/4] Upgrade to Sitecore 9.1.1 --- scripts/NuGet/ConvertToNewNuget.ps1 | 6 +- .../Sitecore.Feature.Accounts.Tests.csproj | 38 ++++----- .../code/Sitecore.Feature.Accounts.csproj | 20 ++--- .../Demo/code/Sitecore.Feature.Demo.csproj | 78 +++++++++---------- .../tests/Sitecore.Feature.Demo.Tests.csproj | 28 +++---- .../code/Sitecore.Feature.Identity.csproj | 2 +- .../Sitecore.Feature.Language.Tests.csproj | 8 +- .../code/Sitecore.Feature.Language.csproj | 2 +- .../Maps/code/Sitecore.Feature.Maps.csproj | 6 +- .../tests/Sitecore.Feature.Maps.Tests.csproj | 10 +-- .../Tests/Sitecore.Feature.Media.Tests.csproj | 10 +-- .../Media/code/Sitecore.Feature.Media.csproj | 4 +- .../code/Sitecore.Feature.Metadata.csproj | 4 +- .../code/Sitecore.Feature.Multisite.csproj | 2 +- .../Sitecore.Feature.Multisite.Tests.csproj | 8 +- .../code/Sitecore.Feature.Navigation.csproj | 4 +- .../Tests/Sitecore.Feature.News.Tests.csproj | 14 ++-- .../News/code/Sitecore.Feature.News.csproj | 6 +- .../code/Sitecore.Feature.PageContent.csproj | 4 +- .../code/Sitecore.Feature.Person.csproj | 6 +- .../Sitecore.Feature.Person.Tests.csproj | 10 +-- .../code/Sitecore.Feature.Search.csproj | 8 +- .../code/Sitecore.Feature.Social.csproj | 2 +- .../code/Sitecore.Feature.Teasers.csproj | 4 +- .../Sitecore.Feature.Teasers.Tests.csproj | 20 ++--- .../faq/code/Sitecore.Feature.FAQ.csproj | 2 +- .../code/Sitecore.Foundation.Accounts.csproj | 60 +++++++------- .../Sitecore.Foundation.Accounts.Tests.csproj | 44 +++++------ .../code/Sitecore.Foundation.Alerts.csproj | 4 +- .../Sitecore.Foundation.Alerts.Tests.csproj | 8 +- .../code/Sitecore.Foundation.Assets.csproj | 4 +- ...core.Foundation.DependencyInjection.csproj | 2 +- .../Sitecore.Foundation.Dictionary.csproj | 16 ++-- ...itecore.Foundation.Dictionary.Tests.csproj | 10 +-- .../Sitecore.Foundation.FieldEditor.csproj | 4 +- ...tecore.Foundation.FieldEditor.Tests.csproj | 10 +-- .../Sitecore.Foundation.Indexing.Tests.csproj | 14 ++-- .../code/Sitecore.Foundation.Indexing.csproj | 8 +- .../code/Sitecore.Foundation.Installer.csproj | 2 +- ...Sitecore.Foundation.Installer.Tests.csproj | 6 +- ...Sitecore.Foundation.LocalDatasource.csproj | 4 +- ...re.Foundation.LocalDatasource.Tests.csproj | 18 ++--- .../code/Sitecore.Foundation.Multisite.csproj | 6 +- ...Sitecore.Foundation.Multisite.Tests.csproj | 8 +- .../Sitecore.Foundation.Serialization.csproj | 2 +- ...Foundation.SitecoreExtensions.Tests.csproj | 38 ++++----- ...ecore.Foundation.SitecoreExtensions.csproj | 30 +++---- .../code/Sitecore.Foundation.Theming.csproj | 4 +- .../Sitecore.Foundation.Theming.Tests.csproj | 8 +- .../code/Sitecore.Common.Website.csproj | 2 +- .../code/Sitecore.Habitat.Website.csproj | 8 +- 51 files changed, 313 insertions(+), 313 deletions(-) diff --git a/scripts/NuGet/ConvertToNewNuget.ps1 b/scripts/NuGet/ConvertToNewNuget.ps1 index e2ea123e73..7b86b1a02c 100644 --- a/scripts/NuGet/ConvertToNewNuget.ps1 +++ b/scripts/NuGet/ConvertToNewNuget.ps1 @@ -1,9 +1,9 @@ ## Nuget v2 URL for the target platform, and the target marketing version -$SitecoreNuget = "https://sitecore.myget.org/F/sc-platform-9-1/api/v2" -$TargetVersion = "9.1.0" +$SitecoreNuget = "https://sitecore.myget.org/F/sc-packages/api/v2" +$TargetVersion = "9.1.1" ## Nuget URL to retrieve package metadata, including dependencies -$MetaPackage = "$SitecoreNuget/Packages(Id='Sitecore.Experience.Platform',Version='$TargetVersion')" +$MetaPackage = "$SitecoreNuget/Packages(Id='Sitecore',Version='$TargetVersion')" ## Retrieve the package metadata from nuget (no nice way of doing this via CLI) $PackageMetadata = [xml](Invoke-WebRequest $MetaPackage).Content diff --git a/src/Feature/Accounts/Tests/Sitecore.Feature.Accounts.Tests.csproj b/src/Feature/Accounts/Tests/Sitecore.Feature.Accounts.Tests.csproj index d12b861180..7abfc8d8e1 100644 --- a/src/Feature/Accounts/Tests/Sitecore.Feature.Accounts.Tests.csproj +++ b/src/Feature/Accounts/Tests/Sitecore.Feature.Accounts.Tests.csproj @@ -147,19 +147,19 @@ - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -241,11 +241,11 @@ - \ No newline at end of file diff --git a/src/Feature/Accounts/code/Sitecore.Feature.Accounts.csproj b/src/Feature/Accounts/code/Sitecore.Feature.Accounts.csproj index f40dc87d6b..903c11f131 100644 --- a/src/Feature/Accounts/code/Sitecore.Feature.Accounts.csproj +++ b/src/Feature/Accounts/code/Sitecore.Feature.Accounts.csproj @@ -121,16 +121,16 @@ - - - - - - - - - - + + + + + + + + + + diff --git a/src/Feature/Demo/code/Sitecore.Feature.Demo.csproj b/src/Feature/Demo/code/Sitecore.Feature.Demo.csproj index 5ea2c2f281..cc199101b6 100644 --- a/src/Feature/Demo/code/Sitecore.Feature.Demo.csproj +++ b/src/Feature/Demo/code/Sitecore.Feature.Demo.csproj @@ -212,39 +212,39 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -396,11 +396,11 @@ - \ No newline at end of file diff --git a/src/Feature/Demo/tests/Sitecore.Feature.Demo.Tests.csproj b/src/Feature/Demo/tests/Sitecore.Feature.Demo.Tests.csproj index d12a07dade..00710d5f5c 100644 --- a/src/Feature/Demo/tests/Sitecore.Feature.Demo.Tests.csproj +++ b/src/Feature/Demo/tests/Sitecore.Feature.Demo.Tests.csproj @@ -145,20 +145,20 @@ - - - - - - - - - - - - - - + + + + + + + + + + + + + + diff --git a/src/Feature/Identity/code/Sitecore.Feature.Identity.csproj b/src/Feature/Identity/code/Sitecore.Feature.Identity.csproj index a43250c5c7..81b4a11721 100644 --- a/src/Feature/Identity/code/Sitecore.Feature.Identity.csproj +++ b/src/Feature/Identity/code/Sitecore.Feature.Identity.csproj @@ -73,7 +73,7 @@ - + diff --git a/src/Feature/Language/Tests/Sitecore.Feature.Language.Tests.csproj b/src/Feature/Language/Tests/Sitecore.Feature.Language.Tests.csproj index 3e13de7181..20ec92bd90 100644 --- a/src/Feature/Language/Tests/Sitecore.Feature.Language.Tests.csproj +++ b/src/Feature/Language/Tests/Sitecore.Feature.Language.Tests.csproj @@ -104,10 +104,10 @@ - - - - + + + + diff --git a/src/Feature/Language/code/Sitecore.Feature.Language.csproj b/src/Feature/Language/code/Sitecore.Feature.Language.csproj index 31eabe32ff..1cb4a6f563 100644 --- a/src/Feature/Language/code/Sitecore.Feature.Language.csproj +++ b/src/Feature/Language/code/Sitecore.Feature.Language.csproj @@ -73,7 +73,7 @@ - + diff --git a/src/Feature/Maps/code/Sitecore.Feature.Maps.csproj b/src/Feature/Maps/code/Sitecore.Feature.Maps.csproj index 93d1d13ded..ed29312fa0 100644 --- a/src/Feature/Maps/code/Sitecore.Feature.Maps.csproj +++ b/src/Feature/Maps/code/Sitecore.Feature.Maps.csproj @@ -81,9 +81,9 @@ - - - + + + diff --git a/src/Feature/Maps/tests/Sitecore.Feature.Maps.Tests.csproj b/src/Feature/Maps/tests/Sitecore.Feature.Maps.Tests.csproj index ba4fa7b4b6..14934ed148 100644 --- a/src/Feature/Maps/tests/Sitecore.Feature.Maps.Tests.csproj +++ b/src/Feature/Maps/tests/Sitecore.Feature.Maps.Tests.csproj @@ -108,11 +108,11 @@ - - - - - + + + + + diff --git a/src/Feature/Media/Tests/Sitecore.Feature.Media.Tests.csproj b/src/Feature/Media/Tests/Sitecore.Feature.Media.Tests.csproj index af3c133d39..4f3210be99 100644 --- a/src/Feature/Media/Tests/Sitecore.Feature.Media.Tests.csproj +++ b/src/Feature/Media/Tests/Sitecore.Feature.Media.Tests.csproj @@ -108,11 +108,11 @@ - - - - - + + + + + diff --git a/src/Feature/Media/code/Sitecore.Feature.Media.csproj b/src/Feature/Media/code/Sitecore.Feature.Media.csproj index a481200885..a49e53cf89 100644 --- a/src/Feature/Media/code/Sitecore.Feature.Media.csproj +++ b/src/Feature/Media/code/Sitecore.Feature.Media.csproj @@ -77,8 +77,8 @@ - - + + diff --git a/src/Feature/Metadata/code/Sitecore.Feature.Metadata.csproj b/src/Feature/Metadata/code/Sitecore.Feature.Metadata.csproj index f13e5247e2..002ee479a8 100644 --- a/src/Feature/Metadata/code/Sitecore.Feature.Metadata.csproj +++ b/src/Feature/Metadata/code/Sitecore.Feature.Metadata.csproj @@ -77,8 +77,8 @@ - - + + diff --git a/src/Feature/Multisite/code/Sitecore.Feature.Multisite.csproj b/src/Feature/Multisite/code/Sitecore.Feature.Multisite.csproj index 08fe1b1a25..7cd0b6a45e 100644 --- a/src/Feature/Multisite/code/Sitecore.Feature.Multisite.csproj +++ b/src/Feature/Multisite/code/Sitecore.Feature.Multisite.csproj @@ -72,7 +72,7 @@ - + diff --git a/src/Feature/Multisite/tests/Sitecore.Feature.Multisite.Tests.csproj b/src/Feature/Multisite/tests/Sitecore.Feature.Multisite.Tests.csproj index 956efe2f8e..c2bd99a5ef 100644 --- a/src/Feature/Multisite/tests/Sitecore.Feature.Multisite.Tests.csproj +++ b/src/Feature/Multisite/tests/Sitecore.Feature.Multisite.Tests.csproj @@ -104,10 +104,10 @@ - - - - + + + + diff --git a/src/Feature/Navigation/code/Sitecore.Feature.Navigation.csproj b/src/Feature/Navigation/code/Sitecore.Feature.Navigation.csproj index ed18eb2b93..0a3ca39f36 100644 --- a/src/Feature/Navigation/code/Sitecore.Feature.Navigation.csproj +++ b/src/Feature/Navigation/code/Sitecore.Feature.Navigation.csproj @@ -77,8 +77,8 @@ - - + + diff --git a/src/Feature/News/Tests/Sitecore.Feature.News.Tests.csproj b/src/Feature/News/Tests/Sitecore.Feature.News.Tests.csproj index d019592ea5..1815079032 100644 --- a/src/Feature/News/Tests/Sitecore.Feature.News.Tests.csproj +++ b/src/Feature/News/Tests/Sitecore.Feature.News.Tests.csproj @@ -116,13 +116,13 @@ - - - - - - - + + + + + + + diff --git a/src/Feature/News/code/Sitecore.Feature.News.csproj b/src/Feature/News/code/Sitecore.Feature.News.csproj index a032e86dd0..79ed113cad 100644 --- a/src/Feature/News/code/Sitecore.Feature.News.csproj +++ b/src/Feature/News/code/Sitecore.Feature.News.csproj @@ -81,9 +81,9 @@ - - - + + + diff --git a/src/Feature/PageContent/code/Sitecore.Feature.PageContent.csproj b/src/Feature/PageContent/code/Sitecore.Feature.PageContent.csproj index 0336d4cacc..2fa774c3f1 100644 --- a/src/Feature/PageContent/code/Sitecore.Feature.PageContent.csproj +++ b/src/Feature/PageContent/code/Sitecore.Feature.PageContent.csproj @@ -78,8 +78,8 @@ - - + + diff --git a/src/Feature/Person/code/Sitecore.Feature.Person.csproj b/src/Feature/Person/code/Sitecore.Feature.Person.csproj index cecb240f51..2e0fb05f85 100644 --- a/src/Feature/Person/code/Sitecore.Feature.Person.csproj +++ b/src/Feature/Person/code/Sitecore.Feature.Person.csproj @@ -80,9 +80,9 @@ - - - + + + diff --git a/src/Feature/Person/tests/Sitecore.Feature.Person.Tests.csproj b/src/Feature/Person/tests/Sitecore.Feature.Person.Tests.csproj index 416b489994..d70deee76c 100644 --- a/src/Feature/Person/tests/Sitecore.Feature.Person.Tests.csproj +++ b/src/Feature/Person/tests/Sitecore.Feature.Person.Tests.csproj @@ -107,11 +107,11 @@ - - - - - + + + + + diff --git a/src/Feature/Search/code/Sitecore.Feature.Search.csproj b/src/Feature/Search/code/Sitecore.Feature.Search.csproj index 6ef9a7c00f..88c1eced9b 100644 --- a/src/Feature/Search/code/Sitecore.Feature.Search.csproj +++ b/src/Feature/Search/code/Sitecore.Feature.Search.csproj @@ -92,10 +92,10 @@ - - - - + + + + diff --git a/src/Feature/Social/code/Sitecore.Feature.Social.csproj b/src/Feature/Social/code/Sitecore.Feature.Social.csproj index 7755299d8b..62fa35e92f 100644 --- a/src/Feature/Social/code/Sitecore.Feature.Social.csproj +++ b/src/Feature/Social/code/Sitecore.Feature.Social.csproj @@ -73,7 +73,7 @@ - + diff --git a/src/Feature/Teasers/code/Sitecore.Feature.Teasers.csproj b/src/Feature/Teasers/code/Sitecore.Feature.Teasers.csproj index 82b3cc954d..4c953472e1 100644 --- a/src/Feature/Teasers/code/Sitecore.Feature.Teasers.csproj +++ b/src/Feature/Teasers/code/Sitecore.Feature.Teasers.csproj @@ -77,8 +77,8 @@ - - + + diff --git a/src/Feature/Teasers/tests/Sitecore.Feature.Teasers.Tests.csproj b/src/Feature/Teasers/tests/Sitecore.Feature.Teasers.Tests.csproj index bbe0f6da91..a1934c6e67 100644 --- a/src/Feature/Teasers/tests/Sitecore.Feature.Teasers.Tests.csproj +++ b/src/Feature/Teasers/tests/Sitecore.Feature.Teasers.Tests.csproj @@ -95,10 +95,10 @@ - - - - + + + + @@ -137,11 +137,11 @@ - \ No newline at end of file diff --git a/src/Feature/faq/code/Sitecore.Feature.FAQ.csproj b/src/Feature/faq/code/Sitecore.Feature.FAQ.csproj index 5427165826..186916d9af 100644 --- a/src/Feature/faq/code/Sitecore.Feature.FAQ.csproj +++ b/src/Feature/faq/code/Sitecore.Feature.FAQ.csproj @@ -73,7 +73,7 @@ - + diff --git a/src/Foundation/Accounts/code/Sitecore.Foundation.Accounts.csproj b/src/Foundation/Accounts/code/Sitecore.Foundation.Accounts.csproj index dfede3212a..1be059e876 100644 --- a/src/Foundation/Accounts/code/Sitecore.Foundation.Accounts.csproj +++ b/src/Foundation/Accounts/code/Sitecore.Foundation.Accounts.csproj @@ -174,30 +174,30 @@ - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + @@ -276,11 +276,11 @@ - \ No newline at end of file diff --git a/src/Foundation/Accounts/tests/Sitecore.Foundation.Accounts.Tests.csproj b/src/Foundation/Accounts/tests/Sitecore.Foundation.Accounts.Tests.csproj index 164035d3e5..208a834f3d 100644 --- a/src/Foundation/Accounts/tests/Sitecore.Foundation.Accounts.Tests.csproj +++ b/src/Foundation/Accounts/tests/Sitecore.Foundation.Accounts.Tests.csproj @@ -158,22 +158,22 @@ - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + @@ -216,11 +216,11 @@ - \ No newline at end of file diff --git a/src/Foundation/Alerts/code/Sitecore.Foundation.Alerts.csproj b/src/Foundation/Alerts/code/Sitecore.Foundation.Alerts.csproj index 3dc6d3909b..d8e4ead070 100644 --- a/src/Foundation/Alerts/code/Sitecore.Foundation.Alerts.csproj +++ b/src/Foundation/Alerts/code/Sitecore.Foundation.Alerts.csproj @@ -76,8 +76,8 @@ - - + + diff --git a/src/Foundation/Alerts/tests/Sitecore.Foundation.Alerts.Tests.csproj b/src/Foundation/Alerts/tests/Sitecore.Foundation.Alerts.Tests.csproj index 587bfc1094..e43577c5c9 100644 --- a/src/Foundation/Alerts/tests/Sitecore.Foundation.Alerts.Tests.csproj +++ b/src/Foundation/Alerts/tests/Sitecore.Foundation.Alerts.Tests.csproj @@ -104,10 +104,10 @@ - - - - + + + + diff --git a/src/Foundation/Assets/code/Sitecore.Foundation.Assets.csproj b/src/Foundation/Assets/code/Sitecore.Foundation.Assets.csproj index bd2f6bebcf..951c817927 100644 --- a/src/Foundation/Assets/code/Sitecore.Foundation.Assets.csproj +++ b/src/Foundation/Assets/code/Sitecore.Foundation.Assets.csproj @@ -81,8 +81,8 @@ - - + + diff --git a/src/Foundation/DependencyInjection/code/Sitecore.Foundation.DependencyInjection.csproj b/src/Foundation/DependencyInjection/code/Sitecore.Foundation.DependencyInjection.csproj index 2c04e85eed..17efa92804 100644 --- a/src/Foundation/DependencyInjection/code/Sitecore.Foundation.DependencyInjection.csproj +++ b/src/Foundation/DependencyInjection/code/Sitecore.Foundation.DependencyInjection.csproj @@ -78,7 +78,7 @@ - + diff --git a/src/Foundation/Dictionary/code/Sitecore.Foundation.Dictionary.csproj b/src/Foundation/Dictionary/code/Sitecore.Foundation.Dictionary.csproj index 94be3e069b..4b16720fde 100644 --- a/src/Foundation/Dictionary/code/Sitecore.Foundation.Dictionary.csproj +++ b/src/Foundation/Dictionary/code/Sitecore.Foundation.Dictionary.csproj @@ -77,8 +77,8 @@ - - + + @@ -143,11 +143,11 @@ - \ No newline at end of file diff --git a/src/Foundation/Dictionary/tests/Sitecore.Foundation.Dictionary.Tests.csproj b/src/Foundation/Dictionary/tests/Sitecore.Foundation.Dictionary.Tests.csproj index ced0f6441c..d9198e2537 100644 --- a/src/Foundation/Dictionary/tests/Sitecore.Foundation.Dictionary.Tests.csproj +++ b/src/Foundation/Dictionary/tests/Sitecore.Foundation.Dictionary.Tests.csproj @@ -103,11 +103,11 @@ - - - - - + + + + + diff --git a/src/Foundation/FieldEditor/code/Sitecore.Foundation.FieldEditor.csproj b/src/Foundation/FieldEditor/code/Sitecore.Foundation.FieldEditor.csproj index e7813a67a3..3f48cc3ba8 100644 --- a/src/Foundation/FieldEditor/code/Sitecore.Foundation.FieldEditor.csproj +++ b/src/Foundation/FieldEditor/code/Sitecore.Foundation.FieldEditor.csproj @@ -77,8 +77,8 @@ - - + + diff --git a/src/Foundation/FieldEditor/tests/Sitecore.Foundation.FieldEditor.Tests.csproj b/src/Foundation/FieldEditor/tests/Sitecore.Foundation.FieldEditor.Tests.csproj index 2d6c492e09..22d5f80720 100644 --- a/src/Foundation/FieldEditor/tests/Sitecore.Foundation.FieldEditor.Tests.csproj +++ b/src/Foundation/FieldEditor/tests/Sitecore.Foundation.FieldEditor.Tests.csproj @@ -106,11 +106,11 @@ - - - - - + + + + + diff --git a/src/Foundation/Indexing/Tests/Sitecore.Foundation.Indexing.Tests.csproj b/src/Foundation/Indexing/Tests/Sitecore.Foundation.Indexing.Tests.csproj index 49696a2e44..6b4962f100 100644 --- a/src/Foundation/Indexing/Tests/Sitecore.Foundation.Indexing.Tests.csproj +++ b/src/Foundation/Indexing/Tests/Sitecore.Foundation.Indexing.Tests.csproj @@ -115,13 +115,13 @@ - - - - - - - + + + + + + + diff --git a/src/Foundation/Indexing/code/Sitecore.Foundation.Indexing.csproj b/src/Foundation/Indexing/code/Sitecore.Foundation.Indexing.csproj index f1b01da340..c20d3a30ce 100644 --- a/src/Foundation/Indexing/code/Sitecore.Foundation.Indexing.csproj +++ b/src/Foundation/Indexing/code/Sitecore.Foundation.Indexing.csproj @@ -95,10 +95,10 @@ - - - - + + + + diff --git a/src/Foundation/Installer/code/Sitecore.Foundation.Installer.csproj b/src/Foundation/Installer/code/Sitecore.Foundation.Installer.csproj index 8cc9b0cf7b..090e61de21 100644 --- a/src/Foundation/Installer/code/Sitecore.Foundation.Installer.csproj +++ b/src/Foundation/Installer/code/Sitecore.Foundation.Installer.csproj @@ -73,7 +73,7 @@ - + diff --git a/src/Foundation/Installer/tests/Sitecore.Foundation.Installer.Tests.csproj b/src/Foundation/Installer/tests/Sitecore.Foundation.Installer.Tests.csproj index 7b7ac43c69..166c17022c 100644 --- a/src/Foundation/Installer/tests/Sitecore.Foundation.Installer.Tests.csproj +++ b/src/Foundation/Installer/tests/Sitecore.Foundation.Installer.Tests.csproj @@ -99,9 +99,9 @@ - - - + + + diff --git a/src/Foundation/LocalDatasource/code/Sitecore.Foundation.LocalDatasource.csproj b/src/Foundation/LocalDatasource/code/Sitecore.Foundation.LocalDatasource.csproj index ac6bdd1932..f761b3a179 100644 --- a/src/Foundation/LocalDatasource/code/Sitecore.Foundation.LocalDatasource.csproj +++ b/src/Foundation/LocalDatasource/code/Sitecore.Foundation.LocalDatasource.csproj @@ -76,8 +76,8 @@ - - + + diff --git a/src/Foundation/LocalDatasource/tests/Sitecore.Foundation.LocalDatasource.Tests.csproj b/src/Foundation/LocalDatasource/tests/Sitecore.Foundation.LocalDatasource.Tests.csproj index b5a67ff9c6..de7210db19 100644 --- a/src/Foundation/LocalDatasource/tests/Sitecore.Foundation.LocalDatasource.Tests.csproj +++ b/src/Foundation/LocalDatasource/tests/Sitecore.Foundation.LocalDatasource.Tests.csproj @@ -90,9 +90,9 @@ - - - + + + @@ -126,11 +126,11 @@ - \ No newline at end of file diff --git a/src/Foundation/Multisite/code/Sitecore.Foundation.Multisite.csproj b/src/Foundation/Multisite/code/Sitecore.Foundation.Multisite.csproj index d52379de4b..c70d792368 100644 --- a/src/Foundation/Multisite/code/Sitecore.Foundation.Multisite.csproj +++ b/src/Foundation/Multisite/code/Sitecore.Foundation.Multisite.csproj @@ -87,9 +87,9 @@ - - - + + + diff --git a/src/Foundation/Multisite/tests/Sitecore.Foundation.Multisite.Tests.csproj b/src/Foundation/Multisite/tests/Sitecore.Foundation.Multisite.Tests.csproj index 27447560df..bcb5d3ef01 100644 --- a/src/Foundation/Multisite/tests/Sitecore.Foundation.Multisite.Tests.csproj +++ b/src/Foundation/Multisite/tests/Sitecore.Foundation.Multisite.Tests.csproj @@ -103,10 +103,10 @@ - - - - + + + + diff --git a/src/Foundation/Serialization/code/Sitecore.Foundation.Serialization.csproj b/src/Foundation/Serialization/code/Sitecore.Foundation.Serialization.csproj index d55d9e92c9..10adfba258 100644 --- a/src/Foundation/Serialization/code/Sitecore.Foundation.Serialization.csproj +++ b/src/Foundation/Serialization/code/Sitecore.Foundation.Serialization.csproj @@ -86,7 +86,7 @@ - + diff --git a/src/Foundation/SitecoreExtensions/Tests/Sitecore.Foundation.SitecoreExtensions.Tests.csproj b/src/Foundation/SitecoreExtensions/Tests/Sitecore.Foundation.SitecoreExtensions.Tests.csproj index 49ec3b5de4..a540509b65 100644 --- a/src/Foundation/SitecoreExtensions/Tests/Sitecore.Foundation.SitecoreExtensions.Tests.csproj +++ b/src/Foundation/SitecoreExtensions/Tests/Sitecore.Foundation.SitecoreExtensions.Tests.csproj @@ -167,25 +167,25 @@ - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + diff --git a/src/Foundation/SitecoreExtensions/code/Sitecore.Foundation.SitecoreExtensions.csproj b/src/Foundation/SitecoreExtensions/code/Sitecore.Foundation.SitecoreExtensions.csproj index ec9b5fa517..59e24c5776 100644 --- a/src/Foundation/SitecoreExtensions/code/Sitecore.Foundation.SitecoreExtensions.csproj +++ b/src/Foundation/SitecoreExtensions/code/Sitecore.Foundation.SitecoreExtensions.csproj @@ -140,21 +140,21 @@ - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/src/Foundation/Theming/code/Sitecore.Foundation.Theming.csproj b/src/Foundation/Theming/code/Sitecore.Foundation.Theming.csproj index 1e6ee5b35d..8670ebc7de 100644 --- a/src/Foundation/Theming/code/Sitecore.Foundation.Theming.csproj +++ b/src/Foundation/Theming/code/Sitecore.Foundation.Theming.csproj @@ -79,8 +79,8 @@ - - + + diff --git a/src/Foundation/Theming/tests/Sitecore.Foundation.Theming.Tests.csproj b/src/Foundation/Theming/tests/Sitecore.Foundation.Theming.Tests.csproj index b10041d84b..005e81f416 100644 --- a/src/Foundation/Theming/tests/Sitecore.Foundation.Theming.Tests.csproj +++ b/src/Foundation/Theming/tests/Sitecore.Foundation.Theming.Tests.csproj @@ -103,10 +103,10 @@ - - - - + + + + diff --git a/src/Project/Common/code/Sitecore.Common.Website.csproj b/src/Project/Common/code/Sitecore.Common.Website.csproj index e181011275..5f00eefa00 100644 --- a/src/Project/Common/code/Sitecore.Common.Website.csproj +++ b/src/Project/Common/code/Sitecore.Common.Website.csproj @@ -79,7 +79,7 @@ - + diff --git a/src/Project/Habitat/code/Sitecore.Habitat.Website.csproj b/src/Project/Habitat/code/Sitecore.Habitat.Website.csproj index 200d7d5f26..55359c046c 100644 --- a/src/Project/Habitat/code/Sitecore.Habitat.Website.csproj +++ b/src/Project/Habitat/code/Sitecore.Habitat.Website.csproj @@ -93,10 +93,10 @@ - - - - + + + + From aa6ef8872fa3d639cacc536d04601cc476871bfd Mon Sep 17 00:00:00 2001 From: kimcu-on-thenet Date: Tue, 14 May 2019 18:00:40 +0700 Subject: [PATCH 2/4] Keep Sitecore.Framework.Conditions (= 3.1.0) --- .../code/Sitecore.Foundation.SitecoreExtensions.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Foundation/SitecoreExtensions/code/Sitecore.Foundation.SitecoreExtensions.csproj b/src/Foundation/SitecoreExtensions/code/Sitecore.Foundation.SitecoreExtensions.csproj index 59e24c5776..34a2c8e0cb 100644 --- a/src/Foundation/SitecoreExtensions/code/Sitecore.Foundation.SitecoreExtensions.csproj +++ b/src/Foundation/SitecoreExtensions/code/Sitecore.Foundation.SitecoreExtensions.csproj @@ -147,7 +147,7 @@ - + From dfafd75535e9d796d9e0f16e6c96d30804fb4915 Mon Sep 17 00:00:00 2001 From: kimcu-on-thenet Date: Tue, 14 May 2019 18:01:17 +0700 Subject: [PATCH 3/4] Update nuget source for Sitecore 9.1.1 --- nuget.config | 1 + 1 file changed, 1 insertion(+) diff --git a/nuget.config b/nuget.config index 301bf3a598..0f1ef09996 100644 --- a/nuget.config +++ b/nuget.config @@ -9,6 +9,7 @@ + From 1d9efadb1b2a80a53aa7e0dae706fa5813ca6640 Mon Sep 17 00:00:00 2001 From: kimcu-on-thenet Date: Wed, 15 May 2019 17:05:05 +0700 Subject: [PATCH 4/4] Keep Sitecore.Framework.Conditions (= 3.1.0) --- .../Accounts/Tests/Sitecore.Feature.Accounts.Tests.csproj | 2 +- src/Feature/Demo/code/Sitecore.Feature.Demo.csproj | 2 +- .../Accounts/code/Sitecore.Foundation.Accounts.csproj | 2 +- .../Accounts/tests/Sitecore.Foundation.Accounts.Tests.csproj | 2 +- .../Tests/Sitecore.Foundation.SitecoreExtensions.Tests.csproj | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Feature/Accounts/Tests/Sitecore.Feature.Accounts.Tests.csproj b/src/Feature/Accounts/Tests/Sitecore.Feature.Accounts.Tests.csproj index 7abfc8d8e1..3a4f19c21a 100644 --- a/src/Feature/Accounts/Tests/Sitecore.Feature.Accounts.Tests.csproj +++ b/src/Feature/Accounts/Tests/Sitecore.Feature.Accounts.Tests.csproj @@ -151,7 +151,7 @@ - + diff --git a/src/Feature/Demo/code/Sitecore.Feature.Demo.csproj b/src/Feature/Demo/code/Sitecore.Feature.Demo.csproj index cc199101b6..f9a444b182 100644 --- a/src/Feature/Demo/code/Sitecore.Feature.Demo.csproj +++ b/src/Feature/Demo/code/Sitecore.Feature.Demo.csproj @@ -220,7 +220,7 @@ - + diff --git a/src/Foundation/Accounts/code/Sitecore.Foundation.Accounts.csproj b/src/Foundation/Accounts/code/Sitecore.Foundation.Accounts.csproj index 1be059e876..98e342e287 100644 --- a/src/Foundation/Accounts/code/Sitecore.Foundation.Accounts.csproj +++ b/src/Foundation/Accounts/code/Sitecore.Foundation.Accounts.csproj @@ -178,7 +178,7 @@ - + diff --git a/src/Foundation/Accounts/tests/Sitecore.Foundation.Accounts.Tests.csproj b/src/Foundation/Accounts/tests/Sitecore.Foundation.Accounts.Tests.csproj index 208a834f3d..228c7895de 100644 --- a/src/Foundation/Accounts/tests/Sitecore.Foundation.Accounts.Tests.csproj +++ b/src/Foundation/Accounts/tests/Sitecore.Foundation.Accounts.Tests.csproj @@ -166,7 +166,7 @@ - + diff --git a/src/Foundation/SitecoreExtensions/Tests/Sitecore.Foundation.SitecoreExtensions.Tests.csproj b/src/Foundation/SitecoreExtensions/Tests/Sitecore.Foundation.SitecoreExtensions.Tests.csproj index a540509b65..e608b4f370 100644 --- a/src/Foundation/SitecoreExtensions/Tests/Sitecore.Foundation.SitecoreExtensions.Tests.csproj +++ b/src/Foundation/SitecoreExtensions/Tests/Sitecore.Foundation.SitecoreExtensions.Tests.csproj @@ -175,7 +175,7 @@ - +