File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -151,7 +151,7 @@ jobs:
151151 - name : Setup dotnet
152152 uses : actions/setup-dotnet@v4
153153 with :
154- dotnet-version : |
154+ dotnet-version : |
155155 3.1.x
156156 5.0.x
157157
@@ -166,7 +166,7 @@ jobs:
166166 choco install wixtoolset --version 3.11.2 --allow-downgrade --force
167167 echo "C:\Program Files (x86)\WiX Toolset v3.11\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
168168 if : github.event_name != 'pull_request'
169-
169+
170170 - name : Import Base Build Artifacts
171171 shell : pwsh
172172 run : |
@@ -211,7 +211,7 @@ jobs:
211211 )
212212 $valueName = "Switch.System.DisableTempFileCollectionDirectoryFeature"
213213 $expectedValue = "true"
214-
214+
215215 foreach ($path in $regPaths) {
216216 Write-Host "Adding or updating registry value in $path..."
217217 if (-not (Test-Path $path)) {
@@ -233,11 +233,11 @@ jobs:
233233 $results = Select-String -Path "build.log" -Pattern "^\s*[1-9][0-9]* Error\(s\)"
234234 if ($results) {
235235 foreach ($result in $results) {
236- Write-Host "Found errors in build.log $($result.LineNumber): $($result.Line)" -ForegroundColor red
236+ Write-Host "Found errors in build.log $($result.LineNumber): $($result.Line)" -ForegroundColor red
237237 }
238238 exit 1
239239 } else {
240- Write-Host "No errors found" -ForegroundColor green
240+ Write-Host "No errors found" -ForegroundColor green
241241 exit 0
242242 }
243243
You can’t perform that action at this time.
0 commit comments