Skip to content

Commit

Permalink
build: Fixed .NET 8 SDK version (8.0.202 isn't a valid number)
Browse files Browse the repository at this point in the history
  • Loading branch information
NightOwl888 committed Apr 27, 2024
1 parent 0d60d2e commit 9e2b550
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .build/runbuild.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ properties {
[string]$testResultsDirectory = "$artifactsDirectory/TestResults"
[string]$publishDirectory = "$artifactsDirectory/Publish"
[string]$solutionFile = "$baseDirectory/Lucene.Net.sln"
[string]$minimumSdkVersion = "8.0.202"
[string]$minimumSdkVersion = "8.0.100"
[string]$globalJsonFile = "$baseDirectory/global.json"
[string]$versionPropsFile = "$baseDirectory/version.props"
[string]$luceneReadmeFile = "$baseDirectory/src/Lucene.Net/readme-nuget.md"
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/Generate-TestWorkflows.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,15 @@
.PARAMETER DotNet8SDKVersion
The SDK version of .NET 8.x to install on the build agent to be used for building and
testing. This SDK is always installed on the build agent. The default is 8.0.202.
testing. This SDK is always installed on the build agent. The default is 8.0.x.
.PARAMETER DotNet6SDKVersion
The SDK version of .NET 6.x to install on the build agent to be used for building and
testing. This SDK is always installed on the build agent. The default is 6.0.403.
testing. This SDK is always installed on the build agent. The default is 6.0.x.
.PARAMETER DotNet5SDKVersion
The SDK version of .NET 5.x to install on the build agent to be used for building and
testing. This SDK is always installed on the build agent. The default is 5.0.400.
testing. This SDK is always installed on the build agent. The default is 5.0.x.
#>
param(
[string]$OutputDirectory = $PSScriptRoot,
Expand All @@ -76,11 +76,11 @@ param(

[string[]]$Configurations = @('Release'),

[string]$DotNet8SDKVersion = '8.0.202',
[string]$DotNet8SDKVersion = '8.0.x',

[string]$DotNet6SDKVersion = '6.0.403',
[string]$DotNet6SDKVersion = '6.0.x',

[string]$DotNet5SDKVersion = '5.0.400'
[string]$DotNet5SDKVersion = '5.0.x'
)


Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ variables:
- name: BuildCounter
value: $[counter(variables['VersionSuffix'],coalesce(variables['BuildCounterSeed'], 1250))]
- name: DotNetSDKVersion
value: '8.0.202'
value: '8.0.204'
- name: DocumentationArtifactName
value: 'docs'
- name: DocumentationArtifactZipFileName
Expand Down

0 comments on commit 9e2b550

Please sign in to comment.