diff --git a/scripts/Install.ps1 b/scripts/Install.ps1 index f6d95ce94..3e7fb286b 100644 --- a/scripts/Install.ps1 +++ b/scripts/Install.ps1 @@ -26,7 +26,7 @@ if (!$ChocoInstalled) } # Ensure required packages are installed -$Packages = 'dotnet-7.0-sdk', 'nodejs', 'yarn' +$Packages = 'dotnet-8.0-sdk', 'nodejs', 'yarn' foreach ($PackageName in $Packages) { choco install $PackageName -y diff --git a/scripts/deploy/package-memorypipeline.ps1 b/scripts/deploy/package-memorypipeline.ps1 index 5b5c4d1b0..93dbf8f08 100644 --- a/scripts/deploy/package-memorypipeline.ps1 +++ b/scripts/deploy/package-memorypipeline.ps1 @@ -10,7 +10,7 @@ param( [string] # .NET framework to publish. - $DotNetFramework = "net6.0", + $DotNetFramework = "net8.0", [string] # Target runtime to publish. diff --git a/scripts/deploy/package-memorypipeline.sh b/scripts/deploy/package-memorypipeline.sh index 6495e3c6c..4dbcbe002 100644 --- a/scripts/deploy/package-memorypipeline.sh +++ b/scripts/deploy/package-memorypipeline.sh @@ -12,7 +12,7 @@ usage() { echo "" echo "Arguments:" echo " -c, --configuration CONFIGURATION Build configuration (default: Release)" - echo " -d, --dotnet DOTNET_FRAMEWORK_VERSION Target dotnet framework (default: net6.0)" + echo " -d, --dotnet DOTNET_FRAMEWORK_VERSION Target dotnet framework (default: net8.0)" echo " -r, --runtime TARGET_RUNTIME Runtime identifier (default: win-x64)" echo " -o, --output OUTPUT_DIRECTORY Output directory (default: $SCRIPT_ROOT)" echo " -v --version VERSION Version to set files to (default: 1.0.0)" @@ -68,7 +68,7 @@ done # Set defaults : "${CONFIGURATION:="Release"}" -: "${DOTNET:="net6.0"}" +: "${DOTNET:="net8.0"}" : "${RUNTIME:="win-x64"}" : "${VERSION:="1.0.0"}" : "${INFO:=""}" diff --git a/scripts/deploy/package-plugins.ps1 b/scripts/deploy/package-plugins.ps1 index 3489b7258..12a65bfb4 100644 --- a/scripts/deploy/package-plugins.ps1 +++ b/scripts/deploy/package-plugins.ps1 @@ -10,7 +10,7 @@ param( [string] # .NET framework to publish. - $DotNetFramework = "net6.0", + $DotNetFramework = "net8.0", [string] # Output directory for published assets. diff --git a/scripts/deploy/package-plugins.sh b/scripts/deploy/package-plugins.sh index 86bb28a1b..8ede9a283 100644 --- a/scripts/deploy/package-plugins.sh +++ b/scripts/deploy/package-plugins.sh @@ -12,7 +12,7 @@ usage() { echo "" echo "Arguments:" echo " -c, --configuration CONFIGURATION Build configuration (default: Release)" - echo " -d, --dotnet DOTNET_FRAMEWORK_VERSION Target dotnet framework (default: net6.0)" + echo " -d, --dotnet DOTNET_FRAMEWORK_VERSION Target dotnet framework (default: net8.0)" echo " -o, --output OUTPUT_DIRECTORY Output directory (default: $SCRIPT_ROOT)" echo " -v --version VERSION Version to set files to (default: 1.0.0)" echo " -i --info INFO Additional info to put in version details" @@ -62,7 +62,7 @@ done # Set defaults : "${CONFIGURATION:="Release"}" -: "${DOTNET:="net6.0"}" +: "${DOTNET:="net8.0"}" : "${VERSION:="1.0.0"}" : "${INFO:=""}" : "${OUTPUT_DIRECTORY:="$SCRIPT_ROOT"}" diff --git a/scripts/deploy/package-webapi.ps1 b/scripts/deploy/package-webapi.ps1 index 47569e09b..94d325b56 100755 --- a/scripts/deploy/package-webapi.ps1 +++ b/scripts/deploy/package-webapi.ps1 @@ -10,7 +10,7 @@ param( [string] # .NET framework to publish. - $DotNetFramework = "net6.0", + $DotNetFramework = "net8.0", [string] # Target runtime to publish. diff --git a/scripts/deploy/package-webapi.sh b/scripts/deploy/package-webapi.sh index f5f12e535..eb0429680 100644 --- a/scripts/deploy/package-webapi.sh +++ b/scripts/deploy/package-webapi.sh @@ -12,7 +12,7 @@ usage() { echo "" echo "Arguments:" echo " -c, --configuration CONFIGURATION Build configuration (default: Release)" - echo " -d, --dotnet DOTNET_FRAMEWORK_VERSION Target dotnet framework (default: net6.0)" + echo " -d, --dotnet DOTNET_FRAMEWORK_VERSION Target dotnet framework (default: net8.0)" echo " -r, --runtime TARGET_RUNTIME Runtime identifier (default: win-x64)" echo " -o, --output OUTPUT_DIRECTORY Output directory (default: $SCRIPT_ROOT)" echo " -v --version VERSION Version to set files to (default: 1.0.0)" @@ -75,7 +75,7 @@ echo "Building backend executables..." # Set defaults : "${CONFIGURATION:="Release"}" -: "${DOTNET:="net6.0"}" +: "${DOTNET:="net8.0"}" : "${RUNTIME:="win-x64"}" : "${VERSION:="0.0.0"}" : "${INFO:=""}"