You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(cli): update csharp & fsharp template to net6.0 (#23926)
Update the csharp & fsharp templates to net6.0
NET Core 3.1 is EOL, see https://endoflife.date/dotnetCloses#23921.
----
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
Third-party Language Deprecation: language version is only supported until its EOL (End Of Life) shared by the vendor or community and is subject to change with prior notice.
Copy file name to clipboardExpand all lines: packages/aws-cdk/lib/init-templates/sample-app/csharp/src/%name.PascalCased%/%name.PascalCased%.template.csproj
+1-1
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
<PropertyGroup>
4
4
<OutputType>Exe</OutputType>
5
-
<TargetFramework>netcoreapp3.1</TargetFramework>
5
+
<TargetFramework>net6.0</TargetFramework>
6
6
<!-- Roll forward to future major versions of the netcoreapp as needed -->
Copy file name to clipboardExpand all lines: packages/aws-cdk/lib/init-templates/sample-app/fsharp/src/%name.PascalCased%/%name.PascalCased%.template.fsproj
+1-1
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
<PropertyGroup>
4
4
<OutputType>Exe</OutputType>
5
-
<TargetFramework>netcoreapp3.1</TargetFramework>
5
+
<TargetFramework>net6.0</TargetFramework>
6
6
<!-- Roll forward to future major versions of the netcoreapp as needed -->
0 commit comments