-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from episerver/feature/Upgrade-Episerver-and-M…
…ultitargeting Update Episerver packages, target IndexingService to .NET 7
- Loading branch information
Showing
16 changed files
with
67 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<CmsVersion>12.5.0</CmsVersion> | ||
<CmsUiCoreVersion>[12.5.0,13)</CmsUiCoreVersion> | ||
<CmsVersion>[12.17.1,13)</CmsVersion> | ||
<CmsCoreVersion>[12.13.1,13)</CmsCoreVersion> | ||
<CmsUiCoreVersion>[12.17.1,13)</CmsUiCoreVersion> | ||
<Lucene>4.8.0-beta00015</Lucene> | ||
</PropertyGroup> | ||
<ItemGroup Condition = "'$(TargetFramework)' != 'net461'"> | ||
<PackageReference Update="EPiServer.CMS" Version="$(CmsVersion)" /> | ||
<PackageReference Update="EPiServer.Hosting" Version="$(CmsUiCoreVersion)" /> | ||
<PackageReference Update="EPiServer.Hosting" Version="$(CmsCoreVersion)" /> | ||
<PackageReference Update="EPiServer.CMS.UI.Core" Version="$(CmsUiCoreVersion)" /> | ||
<PackageReference Update="EPiServer.CMS.AspNetCore.Templating" Version="$(CmsUiCoreVersion)" /> | ||
<PackageReference Update="EPiServer.CMS.AspNetCore.HtmlHelpers" Version="$(CmsUiCoreVersion)" /> | ||
<PackageReference Update="EPiServer.CMS.AspNetCore.Templating" Version="$(CmsCoreVersion)" /> | ||
<PackageReference Update="EPiServer.CMS.AspNetCore.HtmlHelpers" Version="$(CmsCoreVersion)" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<!-- This file may be overwritten by automation. Only values allowed here are VersionPrefix and VersionSuffix. --> | ||
<Project> | ||
<PropertyGroup> | ||
<VersionPrefix>10.0.0</VersionPrefix> | ||
<VersionPrefix>10.1.0</VersionPrefix> | ||
<VersionSuffix> | ||
</VersionSuffix> | ||
</PropertyGroup> | ||
</Project> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"sdk": { | ||
"version": "6.0.100", | ||
"architecture": "x64", | ||
"rollForward": "minor" | ||
"version": "7.0.0", | ||
"rollForward": "latestMajor", | ||
"allowPrerelease": false | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
src/EPiServer.Search.IndexingService/EPiServer.Search.IndexingService.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.Web"> | ||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<TargetFramework>net7.0</TargetFramework> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Lucene.Net" Version="4.8.0-beta00015"/> | ||
<PackageReference Include="Lucene.Net.Analysis.Common" Version="4.8.0-beta00015"/> | ||
<PackageReference Include="Lucene.Net.QueryParser" Version="4.8.0-beta00015"/> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Log4Net.AspNetCore" Version="5.0.4" /> | ||
<PackageReference Include="Lucene.Net" Version="4.8.0-beta00016" /> | ||
<PackageReference Include="Lucene.Net.Analysis.Common" Version="4.8.0-beta00016" /> | ||
<PackageReference Include="Lucene.Net.QueryParser" Version="4.8.0-beta00016" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Log4Net.AspNetCore" Version="6.1.0" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 7 additions & 7 deletions
14
test/EPiServer.Search.IndexingService.Test/EPiServer.Search.IndexingService.Test.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters