Skip to content
This repository was archived by the owner on Nov 12, 2025. It is now read-only.

Commit 3fd3628

Browse files
Support net6.0
1 parent 450c74f commit 3fd3628

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Grab the latest release from [here](https://github.com/episerver/upgrade-assista
1414

1515
## Using the extension
1616

17-
Some of the source code upgrade code analysers requires that packages referenced are available in selected target framework. So for now when CMS targets net5.0 the recommendation is to target net5.0 when converting as well (target framework can be set to net6.0 after conversion is completed). To achieve this first set environment variable like:
17+
The recomendation is upgrade the solution to latest target framework version net6.0. If for some reason you will upgrade the solution to net5.0 please follow the following instructions:
1818

1919
```bash
2020
set DefaultTargetFrameworks__LTS=net5.0

src/EpiSourceUpdater/Epi.Source.Updater.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netstandard2.0</TargetFramework>
5-
<AssemblyName>Epi.Source.Updater</AssemblyName>
4+
<TargetFramework>net6.0</TargetFramework>
5+
<AssemblyName>Epi.Source.Updater</AssemblyName>
66
<LangVersion>latest</LangVersion>
77
</PropertyGroup>
88

@@ -45,9 +45,9 @@
4545
</ItemGroup>
4646

4747
<ItemGroup>
48-
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.2" />
49-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.8.0" />
50-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="3.8.0" />
48+
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.3" />
49+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.1.0" />
50+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.1.0" />
5151
<PackageReference Include="Microsoft.DotNet.UpgradeAssistant.Abstractions" Version="*" />
5252
</ItemGroup>
5353

src/EpiSourceUpdater/PackageMaps/EPiServerPackageMap.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"NetCorePackages": [
5757
{
5858
"Name": "EPiServer.CMS",
59-
"Version": "12.0.3"
59+
"Version": "12.4.0"
6060
}
6161
]
6262
},
@@ -70,8 +70,8 @@
7070
],
7171
"NetCorePackages": [
7272
{
73-
"Name": "EPiServer.UI",
74-
"Version": "12.0.3"
73+
"Name": "EPiServer.CMS.UI",
74+
"Version": "12.4.0"
7575
}
7676
]
7777
},
@@ -86,7 +86,7 @@
8686
"NetCorePackages": [
8787
{
8888
"Name": "EPiServer.CMS.UI.AspNetIdentity",
89-
"Version": "12.0.3"
89+
"Version": "12.4.0"
9090
}
9191
]
9292
},
@@ -101,7 +101,7 @@
101101
"NetCorePackages": [
102102
{
103103
"Name": "EPiServer.CMS.TinyMce",
104-
"Version": "3.0.1"
104+
"Version": "3.1.0"
105105
}
106106
]
107107
},
@@ -116,7 +116,7 @@
116116
"NetCorePackages": [
117117
{
118118
"Name": "EPiServer.Commerce.Core",
119-
"Version": "14.1.2"
119+
"Version": "14.2.0"
120120
}
121121
]
122122
},
@@ -131,7 +131,7 @@
131131
"NetCorePackages": [
132132
{
133133
"Name": "EPiServer.Commerce",
134-
"Version": "14.1.2"
134+
"Version": "14.2.0"
135135
}
136136
]
137137
},
@@ -146,7 +146,7 @@
146146
"NetCorePackages": [
147147
{
148148
"Name": "EPiServer.Commerce.UI",
149-
"Version": "14.1.2"
149+
"Version": "14.2.0"
150150
}
151151
]
152152
},
@@ -161,7 +161,7 @@
161161
"NetCorePackages": [
162162
{
163163
"Name": "EPiServer.Commerce.UI.CustomerService",
164-
"Version": "14.1.2"
164+
"Version": "14.2.0"
165165
}
166166
]
167167
},
@@ -176,7 +176,7 @@
176176
"NetCorePackages": [
177177
{
178178
"Name": "EPiServer.Personalization.Commerce",
179-
"Version": "4.0.6"
179+
"Version": "4.0.8"
180180
}
181181
]
182182
},
@@ -191,7 +191,7 @@
191191
"NetCorePackages": [
192192
{
193193
"Name": "EPiServer.Tracking.Commerce",
194-
"Version": "4.0.6"
194+
"Version": "4.0.8"
195195
}
196196
]
197197
},

0 commit comments

Comments
 (0)