Skip to content

Commit

Permalink
Update default to net8.0 for standalone exe script (#9528)
Browse files Browse the repository at this point in the history
  • Loading branch information
benbp authored Dec 12, 2024
1 parent 81963b1 commit f5d3e28
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The root directory which will receive the compressed standalone executable.
The targeted folder that should be built and assembled into a standalone executable.
.PARAMETER Framework
The targeted .NET framework. Defaults to "net6.0."
The targeted .NET framework. Defaults to "net8.0."
#>
param(
Expand All @@ -29,7 +29,7 @@ param(
[Parameter(mandatory=$true)]
[string] $AssemblyName,
[Parameter(mandatory=$false)]
[string] $Framework = "net6.0"
[string] $Framework = "net8.0"
)

# resolves to <artifactfolder>/win-x64
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ parameters:

# A `BuildMatrix` is merely a list of possible targeted platforms. .NET 6+ can build for any target from any other target.
# - rid: win-x64
# framework: net6.0
# framework: net8.0
# assembly: Azure.Sdk.Tools.TestProxy
# - rid: linux-x64
# framework: net6.0
# framework: net8.0
# assembly: Azure.Sdk.Tools.TestProxy
# - rid: osx-x64
# framework: net6.0
# framework: net8.0
# assembly: Azure.Sdk.Tools.TestProxy

steps:
Expand Down Expand Up @@ -65,7 +65,7 @@ steps:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_MULTILEVEL_LOOKUP: 0

- template: /eng/common/pipelines/templates/steps/publish-1es-artifact.yml
parameters:
ArtifactName: "standalone-${{ target.rid }}"
Expand Down

0 comments on commit f5d3e28

Please sign in to comment.