From 4c5c1417e9905b9fa8b851f92b02b1b9db3dc4ea Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Fri, 1 Dec 2023 23:31:59 -0500 Subject: [PATCH] Remove .NET Framework 3.5 from build script --- CHANGELIST.md | 1 + publish-win.ps1 | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELIST.md b/CHANGELIST.md index b8722de6..f31b5ab0 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -3,6 +3,7 @@ - Fix broken tests - Fix using SHA-1 for track checks - Fix build warning for NRE +- Remove .NET Framework 3.5 from build script ### 3.0.2 (2023-12-01) diff --git a/publish-win.ps1 b/publish-win.ps1 index 12b309cc..7d447c55 100644 --- a/publish-win.ps1 +++ b/publish-win.ps1 @@ -42,7 +42,7 @@ $CHECK_RUNTIMES = @('win-x64', 'linux-x64', 'osx-x64') # Use expanded lists, if requested if ($USE_ALL.IsPresent) { - $UI_FRAMEWORKS = @('net35', 'net40', 'net452', 'net462', 'net472', 'net48', 'netcoreapp3.1', 'net5.0-windows', 'net6.0-windows', 'net7.0-windows', 'net8.0-windows') + $UI_FRAMEWORKS = @('net40', 'net452', 'net462', 'net472', 'net48', 'netcoreapp3.1', 'net5.0-windows', 'net6.0-windows', 'net7.0-windows', 'net8.0-windows') $UI_RUNTIMES = @('win-x86', 'win-x64') $CHECK_FRAMEWORKS = @('net20', 'net35', 'net40', 'net452', 'net462', 'net472', 'net48', 'netcoreapp3.1', 'net5.0', 'net6.0', 'net7.0', 'net8.0') $CHECK_RUNTIMES = @('win-x86', 'win-x64', 'win-arm64', 'linux-x64', 'linux-arm64', 'osx-x64')