diff --git a/publish-nix.sh b/publish-nix.sh index 43cdbecd..66694431 100755 --- a/publish-nix.sh +++ b/publish-nix.sh @@ -54,7 +54,7 @@ RUNTIMES=("win-x86" "win-x64" "win-arm64" "linux-x64" "linux-arm64" "osx-x64" "o # Use expanded lists, if requested if [ $USE_ALL = true ]; then - FRAMEWORKS=("net48" "netcoreapp3.1" "net5.0" "net6.0" "net7.0" "net8.0" "net9.0") # TODO: Support all frameworks + FRAMEWORKS=("net40" "net452" "net462" "net472" "net48" "netcoreapp3.1" "net5.0" "net6.0" "net7.0" "net8.0" "net9.0") # TODO: Support all frameworks fi # Create the filter arrays diff --git a/publish-win.ps1 b/publish-win.ps1 index 615011d3..08d6dd82 100644 --- a/publish-win.ps1 +++ b/publish-win.ps1 @@ -45,7 +45,7 @@ $RUNTIMES = @('win-x86', 'win-x64', 'win-arm64', 'linux-x64', 'linux-arm64', 'os # Use expanded lists, if requested if ($USE_ALL.IsPresent) { - $FRAMEWORKS = @('net48', 'netcoreapp3.1', 'net5.0', 'net6.0', 'net7.0', 'net8.0', 'net9.0') # TODO: Support all frameworks + $FRAMEWORKS = @('net40', 'net452', 'net462', 'net472', 'net48', 'netcoreapp3.1', 'net5.0', 'net6.0', 'net7.0', 'net8.0', 'net9.0') # TODO: Support all frameworks } # Create the filter arrays