We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44063c3 commit 03c7e77Copy full SHA for 03c7e77
.github/workflows/continuous-integration-workflow.yml
@@ -60,6 +60,9 @@ jobs:
60
Write-Host "Building $($sqlproj_file.FullName)"
61
try {
62
msbuild "$($sqlproj_file.FullName)" /p:Configuration=Release
63
+ if (!$?) {
64
+ $errors = "Failed to build $($csproj_file.FullName)"
65
+ }
66
} catch {
67
# Capture detailed error information
68
$errorMessage = "Error building $($sqlproj_file.FullName): $($_.Exception.Message)"
@@ -94,6 +97,9 @@ jobs:
94
97
Write-Host "Building $($csproj_file.FullName)"
95
98
96
99
dotnet build "$($csproj_file.FullName)" --configuration Release
100
101
102
103
104
105
$errorMessage = "Error building $($csproj_file.FullName): $($_.Exception.Message)"
0 commit comments