/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
eng/targets/Java.Common.props
14 строк
912 B
Larry Ewing
Capture gradle stderr and stacktrace in SignalR Java client builds (#67009)
09 июн 2026, 20:09
Не верифицирован
09 июн 2026, 20:09
4b9edc7
Код
Авторство
О чём код?
<Project> <PropertyGroup> <!-- Disable gradle daemon on CI since the CI seems to try to wait for the daemon to shut down, which it doesn't do --> <GradleOptions Condition="'$(ContinuousIntegrationBuild)' == 'true'">$(GradleOptions) -Dorg.gradle.daemon=false</GradleOptions> <!-- On CI, make gradle failures debuggable: print full stacktraces on exceptions and use the plain console renderer so output stays line-oriented (no ANSI escape codes, no overwritten progress lines). Without these flags a compileJava failure ends with only "FAILURE: Build failed with an exception." in the captured output and the actual cause is lost, leaving MSB3073 as the only signal. --> <GradleOptions Condition="'$(ContinuousIntegrationBuild)' == 'true'">$(GradleOptions) --stacktrace --console=plain</GradleOptions> <PackOnBuild>false</PackOnBuild> </PropertyGroup> </Project>