Skip to content

Commit 0e6c9ba

Browse files
rido-minCopilot
andauthored
Fix ADO CI build (#212)
This pull request updates the build step in the Azure DevOps CI pipeline to ensure the correct build configuration is used during the build process. Pipeline configuration improvement: * The `dotnet build` command in `.azdo/ci.yaml` now explicitly uses the `$(buildConfiguration)` variable for configuration, ensuring builds are run with the intended settings. --------- Co-authored-by: Copilot <[email protected]>
1 parent 45ceb3b commit 0e6c9ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.azdo/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ stages:
2727
- script: dotnet restore
2828
displayName: 'Restore'
2929

30-
- script: dotnet build --no-restore --configuration
30+
- script: dotnet build --configuration $(buildConfiguration) --no-restore
3131
displayName: 'Build'
3232

3333
- task: DotNetCoreCLI@2

0 commit comments

Comments
 (0)