Skip to content

Fix terminal logger quiet mode to show project context for warnings/errors#12930

Merged
YuliiaKovalova merged 5 commits intomainfrom
copilot/fix-terminal-logger-quiet-mode
Jan 6, 2026
Merged

Fix terminal logger quiet mode to show project context for warnings/errors#12930
YuliiaKovalova merged 5 commits intomainfrom
copilot/fix-terminal-logger-quiet-mode

Conversation

Copy link
Copy Markdown
Contributor

Copilot AI commented Dec 12, 2025

Context

In quiet mode (-v:q), warnings and errors were rendered immediately without project context. Users saw diagnostic messages but couldn't identify which project they came from.

CSC : warning MSTEST0001: Explicitly enable or disable tests parallelization

Changes Made

Modified diagnostic accumulation logic

  • WarningRaised and ErrorRaised now accumulate diagnostics in the project's BuildMessages collection regardless of verbosity
  • Removed verbosity check that caused immediate rendering in quiet mode
  • Preserved immediate rendering for auth provider warnings and immediate warnings (MSB3026)

Modified project summary rendering

  • ProjectFinished now displays project summaries in quiet mode when HasErrorsOrWarnings is true
  • Projects without diagnostics remain hidden in quiet mode as expected
  • Simplified quiet mode detection logic: Verbosity < LoggerVerbosity.Quiet || (Verbosity == LoggerVerbosity.Quiet && !project.HasErrorsOrWarnings)
  • Skip DisplayNodes() call in quiet mode to avoid writing unnecessary cursor hide/show ANSI codes since there's no dynamic refresh

Result in quiet mode:

  project failed with 1 error(s) and 2 warning(s) (0.2s)
    directory/file(1,2,3,4): warning AA0000: Warning message
    directory/file(1,2,3,4): error AA0000: Error message

Testing

  • Updated snapshot files for PrintBuildSummaryQuietVerbosity_FailedWithErrors across Linux/OSX/Windows
  • All 69 TerminalLogger tests pass
  • Verified successful projects still produce no output in quiet mode
  • Verified no cursor control codes are written in quiet mode output

Notes

Uses the same project-grouping primitives as higher verbosity levels, toggled by runtime state per maintainer guidance.

Original prompt

This section details on the original issue you should resolve

<issue_title>Terminal logger quiet mode hides projects</issue_title>
<issue_description>This was reported by @gao-artur in microsoft/testfx#7051

Here is a new project created from the MSTest template without MSTestSettings.cs file + the binlog. Built with

dotnet build -bl -v q
TestProject11.zip

In that thread we determined that -tl status affects the usefulness of the output for messages that do not have a specific file associated with them:

dotnet build
Restore complete (4.0s)
  TestProject11 net9.0 succeeded with 1 warning(s) (2.3s) → bin\Debug\net9.0\TestProject11.dll
    CSC : warning MSTEST0001: Explicitly enable or disable tests parallelization (https://learn.microsoft.com/dotnet/core/testing/mstest-analyzers/mstest0001)

Build succeeded with 1 warning(s) in 7.2srm -r .\obj\dotnet build -v:q
CSC : warning MSTEST0001: Explicitly enable or disable tests parallelization (https://learn.microsoft.com/dotnet/core/testing/mstest-analyzers/mstest0001)

The associated project TestProject11 is not mentioned anywhere in the latter. I think that's unreasonable even when the user has requested "quiet".</issue_description>

<agent_instructions>Try to update the diagnostic/warning/error message rendering in quiet mode so that it doesn't use the 'immediate' mode formatting, the final output should only show the diagnostics for projects that failed or had warnings.</agent_instructions>

Comments on the Issue (you are @copilot in this section)

@baronfel A few approaches to consider:
  • in quiet mode appending/prepending the project if it exists to the 'message formatting' part of the line
  • in quiet mode using the same project-based grouping as we do in non-quiet mode, instead of assuming that quiet mode should trigger some kind of flat-list-only output</comment_new>
    <comment_new>@rainersigwald
    Yeah I waffled between the two myself, I think I lean to the latter right now though.</comment_new>
    <comment_new>@baronfel
    I do too - it feels more like a 'modular' approach - use the same 'primitives' that can be toggled on/off based on run-time state, etc.</comment_new>

💬 We'd love your input! Share your thoughts on Copilot coding agent in our 2 minute survey.

Copilot AI and others added 2 commits December 12, 2025 17:54
…rrors

Co-authored-by: baronfel <573979+baronfel@users.noreply.github.com>
Co-authored-by: baronfel <573979+baronfel@users.noreply.github.com>
Copilot AI changed the title [WIP] Fix terminal logger quiet mode to show projects Fix terminal logger quiet mode to show project context for warnings/errors Dec 12, 2025
Copilot AI requested a review from baronfel December 12, 2025 18:02
@baronfel
Copy link
Copy Markdown
Member

@copilot since in quiet mode there is no dynamic refresh, can we prevent the hide/show pair from being written at all?

…ow codes

Co-authored-by: baronfel <573979+baronfel@users.noreply.github.com>
Copy link
Copy Markdown
Contributor Author

Copilot AI commented Dec 12, 2025

@copilot since in quiet mode there is no dynamic refresh, can we prevent the hide/show pair from being written at all?

Fixed in fde9744. Added && Verbosity > LoggerVerbosity.Quiet check before calling DisplayNodes() in ProjectFinished(), since there's no dynamic refresh happening in quiet mode. The hide/show cursor codes are no longer written to the output.

@baronfel baronfel marked this pull request as ready for review December 12, 2025 20:31
Copilot AI review requested due to automatic review settings December 12, 2025 20:31
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR fixes terminal logger quiet mode (-v:q) to display project context for warnings and errors. Previously, diagnostics in quiet mode were rendered immediately without project information, making it impossible to identify which project they originated from.

Key Changes:

  • Modified diagnostic accumulation to store warnings/errors in project collections regardless of verbosity level
  • Changed project summary rendering to display projects with errors/warnings even in quiet mode
  • Added logic to skip cursor control codes in quiet mode since there's no dynamic refresh

Reviewed changes

Copilot reviewed 4 out of 4 changed files in this pull request and generated 1 comment.

File Description
src/Build/Logging/TerminalLogger/TerminalLogger.cs Core logic changes: removed verbosity checks from warning/error accumulation; added quiet mode handling to show projects with diagnostics; skips DisplayNodes() in quiet mode to avoid unnecessary ANSI codes
src/Build.UnitTests/Snapshots/TerminalLogger_Tests.PrintBuildSummaryQuietVerbosity_FailedWithErrors.Windows.verified.txt Updated test snapshot showing new output format with project header and indented diagnostics
src/Build.UnitTests/Snapshots/TerminalLogger_Tests.PrintBuildSummaryQuietVerbosity_FailedWithErrors.OSX.verified.txt Updated test snapshot for macOS platform
src/Build.UnitTests/Snapshots/TerminalLogger_Tests.PrintBuildSummaryQuietVerbosity_FailedWithErrors.Linux.verified.txt Updated test snapshot for Linux platform

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
github-actions bot pushed a commit to IntelliTect/Multitool that referenced this pull request Mar 16, 2026
Updated [Microsoft.Build](https://github.com/dotnet/msbuild) from 18.3.3
to 18.4.0.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.Build's
releases](https://github.com/dotnet/msbuild/releases)._

## 18.4.0

## What's Changed
* Fix terminal logger quiet mode to show project context for
warnings/errors by @​Copilot in
dotnet/msbuild#12930
* Replace OpenTelemetry with Microsoft.VisualStudio.Telemetry for VS by
@​YuliiaKovalova in dotnet/msbuild#12843
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13050856 by @​dotnet-bot in
dotnet/msbuild#12982
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot]
in dotnet/msbuild#12979
* eliminate test data serialization warnings by @​JanProvaznik in
dotnet/msbuild#12983
* Add the feature flag that allows users to opt out automatic UTF8
console encoding by @​GangWang01 in
dotnet/msbuild#12637
* Polyfill clean up and source package organization by @​DustinCampbell
in dotnet/msbuild#12977
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13052367 by @​dotnet-bot in
dotnet/msbuild#12984
* Add documentation for enabling binlog collection via env var by
@​YuliiaKovalova in dotnet/msbuild#12805
* Support multiple binary logs from command line arguments by @​Copilot
in dotnet/msbuild#12706
* Add VcxprojReader.exe to ngenApplications by @​YuliiaKovalova in
dotnet/msbuild#12986
* Add HostServices support in Out-of-Process Task Host by
@​YuliiaKovalova in dotnet/msbuild#12753
* [main] Update dependencies from dotnet/roslyn by @​dotnet-maestro[bot]
in dotnet/msbuild#13002
* [main] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot]
in dotnet/msbuild#13000
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13078382 by @​dotnet-bot in
dotnet/msbuild#13003
* Add telemetry tracking for task factory names and runtime usage by
@​Copilot in dotnet/msbuild#12989
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot]
in dotnet/msbuild#12987
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13079827 by @​dotnet-bot in
dotnet/msbuild#13010
* Snap for VS 18.3 and update branding to VS 18.4 by @​Copilot in
dotnet/msbuild#13005
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot]
in dotnet/msbuild#13012
* Add telemetry to categorize build failure reasons by @​Copilot in
dotnet/msbuild#13007
* Update MicrosoftBuildVersion in analyzer template by
@​github-actions[bot] in dotnet/msbuild#13011
* Update OptProf drop metadata configuration by @​YuliiaKovalova in
dotnet/msbuild#13020
* Fix MSB1025 error when using DistributedFileLogger (-dfl flag) by
@​Copilot in dotnet/msbuild#13036
* CmdLine parsing was extracted from XMake and the implementation is
visible to dotnet (attempt 2) by @​MichalPavlik in
dotnet/msbuild#12836
* Make task environment path absolutization not throw. by @​AR-May in
dotnet/msbuild#13035
* Fix flaky test TestTerminalLoggerTogetherWithOtherLoggers by @​Copilot
in dotnet/msbuild#13044
* Enlighten more tasks that require no change by @​AR-May in
dotnet/msbuild#13045
* [main] Update dependencies from dotnet/roslyn by @​dotnet-maestro[bot]
in dotnet/msbuild#13050
* [main] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot]
in dotnet/msbuild#13048
* Add support for MSBUILD_LOGGING_ARGS by @​YuliiaKovalova in
dotnet/msbuild#12993
* Fix MSBuildEventSource by @​dfederm in
dotnet/msbuild#13030
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13124182 by @​dotnet-bot in
dotnet/msbuild#13053
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot]
in dotnet/msbuild#13031
* Add incrementality tracking support and more detailed analysis of the
build errors reported by @​YuliiaKovalova in
dotnet/msbuild#13057
* [automated] Merge branch 'vs18.3' => 'main' by @​github-actions[bot]
in dotnet/msbuild#13055
* Enable com support for clr4 in task host by @​YuliiaKovalova in
dotnet/msbuild#13033
* Add 'rel/d18.3' to insertion target branch options by @​ViktorHofer in
dotnet/msbuild#13067
* add OriginalValue property to AbsolutePath by @​JanProvaznik in
dotnet/msbuild#13077
* [automated] Merge branch 'vs18.3' => 'main' by @​github-actions[bot]
in dotnet/msbuild#13074
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13137486 by @​dotnet-bot in
dotnet/msbuild#13075
* Refactor FileUtilities.cs and add methods for absolute paths. by
@​AR-May in dotnet/msbuild#13079
* Limit extended flag usage to NET and CLR4 runtimes by @​YuliiaKovalova
in dotnet/msbuild#13080
* [main] Update dependencies from nuget/nuget.client by
@​dotnet-maestro[bot] in dotnet/msbuild#13065
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13137926 by @​dotnet-bot in
dotnet/msbuild#13081
* Update to 10.0.1 references by @​rainersigwald in
dotnet/msbuild#13072
* Undo COM support in out of proc task host CLR4 by @​YuliiaKovalova in
dotnet/msbuild#13089
* Add Managed Identity for bootstrapper creation by @​rainersigwald in
dotnet/msbuild#13092
* Add warning MSB4280 when DOTNET_HOST_PATH is set to a directory by
@​Copilot in dotnet/msbuild#13091
 ... (truncated)

Commits viewable in [compare
view](dotnet/msbuild@v18.3.3...v18.4.0).
</details>

[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=Microsoft.Build&package-manager=nuget&previous-version=18.3.3&new-version=18.4.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
premun pushed a commit to sharpliner/sharpliner that referenced this pull request Mar 16, 2026
Updated [Microsoft.Build.Framework](https://github.com/dotnet/msbuild)
from 18.3.3 to 18.4.0.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.Build.Framework's
releases](https://github.com/dotnet/msbuild/releases)._

## 18.4.0

## What's Changed
* Fix terminal logger quiet mode to show project context for
warnings/errors by @​Copilot in
dotnet/msbuild#12930
* Replace OpenTelemetry with Microsoft.VisualStudio.Telemetry for VS by
@​YuliiaKovalova in dotnet/msbuild#12843
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13050856 by @​dotnet-bot in
dotnet/msbuild#12982
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot]
in dotnet/msbuild#12979
* eliminate test data serialization warnings by @​JanProvaznik in
dotnet/msbuild#12983
* Add the feature flag that allows users to opt out automatic UTF8
console encoding by @​GangWang01 in
dotnet/msbuild#12637
* Polyfill clean up and source package organization by @​DustinCampbell
in dotnet/msbuild#12977
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13052367 by @​dotnet-bot in
dotnet/msbuild#12984
* Add documentation for enabling binlog collection via env var by
@​YuliiaKovalova in dotnet/msbuild#12805
* Support multiple binary logs from command line arguments by @​Copilot
in dotnet/msbuild#12706
* Add VcxprojReader.exe to ngenApplications by @​YuliiaKovalova in
dotnet/msbuild#12986
* Add HostServices support in Out-of-Process Task Host by
@​YuliiaKovalova in dotnet/msbuild#12753
* [main] Update dependencies from dotnet/roslyn by @​dotnet-maestro[bot]
in dotnet/msbuild#13002
* [main] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot]
in dotnet/msbuild#13000
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13078382 by @​dotnet-bot in
dotnet/msbuild#13003
* Add telemetry tracking for task factory names and runtime usage by
@​Copilot in dotnet/msbuild#12989
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot]
in dotnet/msbuild#12987
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13079827 by @​dotnet-bot in
dotnet/msbuild#13010
* Snap for VS 18.3 and update branding to VS 18.4 by @​Copilot in
dotnet/msbuild#13005
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot]
in dotnet/msbuild#13012
* Add telemetry to categorize build failure reasons by @​Copilot in
dotnet/msbuild#13007
* Update MicrosoftBuildVersion in analyzer template by
@​github-actions[bot] in dotnet/msbuild#13011
* Update OptProf drop metadata configuration by @​YuliiaKovalova in
dotnet/msbuild#13020
* Fix MSB1025 error when using DistributedFileLogger (-dfl flag) by
@​Copilot in dotnet/msbuild#13036
* CmdLine parsing was extracted from XMake and the implementation is
visible to dotnet (attempt 2) by @​MichalPavlik in
dotnet/msbuild#12836
* Make task environment path absolutization not throw. by @​AR-May in
dotnet/msbuild#13035
* Fix flaky test TestTerminalLoggerTogetherWithOtherLoggers by @​Copilot
in dotnet/msbuild#13044
* Enlighten more tasks that require no change by @​AR-May in
dotnet/msbuild#13045
* [main] Update dependencies from dotnet/roslyn by @​dotnet-maestro[bot]
in dotnet/msbuild#13050
* [main] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot]
in dotnet/msbuild#13048
* Add support for MSBUILD_LOGGING_ARGS by @​YuliiaKovalova in
dotnet/msbuild#12993
* Fix MSBuildEventSource by @​dfederm in
dotnet/msbuild#13030
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13124182 by @​dotnet-bot in
dotnet/msbuild#13053
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot]
in dotnet/msbuild#13031
* Add incrementality tracking support and more detailed analysis of the
build errors reported by @​YuliiaKovalova in
dotnet/msbuild#13057
* [automated] Merge branch 'vs18.3' => 'main' by @​github-actions[bot]
in dotnet/msbuild#13055
* Enable com support for clr4 in task host by @​YuliiaKovalova in
dotnet/msbuild#13033
* Add 'rel/d18.3' to insertion target branch options by @​ViktorHofer in
dotnet/msbuild#13067
* add OriginalValue property to AbsolutePath by @​JanProvaznik in
dotnet/msbuild#13077
* [automated] Merge branch 'vs18.3' => 'main' by @​github-actions[bot]
in dotnet/msbuild#13074
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13137486 by @​dotnet-bot in
dotnet/msbuild#13075
* Refactor FileUtilities.cs and add methods for absolute paths. by
@​AR-May in dotnet/msbuild#13079
* Limit extended flag usage to NET and CLR4 runtimes by @​YuliiaKovalova
in dotnet/msbuild#13080
* [main] Update dependencies from nuget/nuget.client by
@​dotnet-maestro[bot] in dotnet/msbuild#13065
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13137926 by @​dotnet-bot in
dotnet/msbuild#13081
* Update to 10.0.1 references by @​rainersigwald in
dotnet/msbuild#13072
* Undo COM support in out of proc task host CLR4 by @​YuliiaKovalova in
dotnet/msbuild#13089
* Add Managed Identity for bootstrapper creation by @​rainersigwald in
dotnet/msbuild#13092
* Add warning MSB4280 when DOTNET_HOST_PATH is set to a directory by
@​Copilot in dotnet/msbuild#13091
 ... (truncated)

Commits viewable in [compare
view](dotnet/msbuild@v18.3.3...v18.4.0).
</details>

Updated
[Microsoft.Build.Utilities.Core](https://github.com/dotnet/msbuild) from
18.3.3 to 18.4.0.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.Build.Utilities.Core's
releases](https://github.com/dotnet/msbuild/releases)._

## 18.4.0

## What's Changed
* Fix terminal logger quiet mode to show project context for
warnings/errors by @​Copilot in
dotnet/msbuild#12930
* Replace OpenTelemetry with Microsoft.VisualStudio.Telemetry for VS by
@​YuliiaKovalova in dotnet/msbuild#12843
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13050856 by @​dotnet-bot in
dotnet/msbuild#12982
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot]
in dotnet/msbuild#12979
* eliminate test data serialization warnings by @​JanProvaznik in
dotnet/msbuild#12983
* Add the feature flag that allows users to opt out automatic UTF8
console encoding by @​GangWang01 in
dotnet/msbuild#12637
* Polyfill clean up and source package organization by @​DustinCampbell
in dotnet/msbuild#12977
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13052367 by @​dotnet-bot in
dotnet/msbuild#12984
* Add documentation for enabling binlog collection via env var by
@​YuliiaKovalova in dotnet/msbuild#12805
* Support multiple binary logs from command line arguments by @​Copilot
in dotnet/msbuild#12706
* Add VcxprojReader.exe to ngenApplications by @​YuliiaKovalova in
dotnet/msbuild#12986
* Add HostServices support in Out-of-Process Task Host by
@​YuliiaKovalova in dotnet/msbuild#12753
* [main] Update dependencies from dotnet/roslyn by @​dotnet-maestro[bot]
in dotnet/msbuild#13002
* [main] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot]
in dotnet/msbuild#13000
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13078382 by @​dotnet-bot in
dotnet/msbuild#13003
* Add telemetry tracking for task factory names and runtime usage by
@​Copilot in dotnet/msbuild#12989
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot]
in dotnet/msbuild#12987
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13079827 by @​dotnet-bot in
dotnet/msbuild#13010
* Snap for VS 18.3 and update branding to VS 18.4 by @​Copilot in
dotnet/msbuild#13005
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot]
in dotnet/msbuild#13012
* Add telemetry to categorize build failure reasons by @​Copilot in
dotnet/msbuild#13007
* Update MicrosoftBuildVersion in analyzer template by
@​github-actions[bot] in dotnet/msbuild#13011
* Update OptProf drop metadata configuration by @​YuliiaKovalova in
dotnet/msbuild#13020
* Fix MSB1025 error when using DistributedFileLogger (-dfl flag) by
@​Copilot in dotnet/msbuild#13036
* CmdLine parsing was extracted from XMake and the implementation is
visible to dotnet (attempt 2) by @​MichalPavlik in
dotnet/msbuild#12836
* Make task environment path absolutization not throw. by @​AR-May in
dotnet/msbuild#13035
* Fix flaky test TestTerminalLoggerTogetherWithOtherLoggers by @​Copilot
in dotnet/msbuild#13044
* Enlighten more tasks that require no change by @​AR-May in
dotnet/msbuild#13045
* [main] Update dependencies from dotnet/roslyn by @​dotnet-maestro[bot]
in dotnet/msbuild#13050
* [main] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot]
in dotnet/msbuild#13048
* Add support for MSBUILD_LOGGING_ARGS by @​YuliiaKovalova in
dotnet/msbuild#12993
* Fix MSBuildEventSource by @​dfederm in
dotnet/msbuild#13030
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13124182 by @​dotnet-bot in
dotnet/msbuild#13053
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot]
in dotnet/msbuild#13031
* Add incrementality tracking support and more detailed analysis of the
build errors reported by @​YuliiaKovalova in
dotnet/msbuild#13057
* [automated] Merge branch 'vs18.3' => 'main' by @​github-actions[bot]
in dotnet/msbuild#13055
* Enable com support for clr4 in task host by @​YuliiaKovalova in
dotnet/msbuild#13033
* Add 'rel/d18.3' to insertion target branch options by @​ViktorHofer in
dotnet/msbuild#13067
* add OriginalValue property to AbsolutePath by @​JanProvaznik in
dotnet/msbuild#13077
* [automated] Merge branch 'vs18.3' => 'main' by @​github-actions[bot]
in dotnet/msbuild#13074
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13137486 by @​dotnet-bot in
dotnet/msbuild#13075
* Refactor FileUtilities.cs and add methods for absolute paths. by
@​AR-May in dotnet/msbuild#13079
* Limit extended flag usage to NET and CLR4 runtimes by @​YuliiaKovalova
in dotnet/msbuild#13080
* [main] Update dependencies from nuget/nuget.client by
@​dotnet-maestro[bot] in dotnet/msbuild#13065
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13137926 by @​dotnet-bot in
dotnet/msbuild#13081
* Update to 10.0.1 references by @​rainersigwald in
dotnet/msbuild#13072
* Undo COM support in out of proc task host CLR4 by @​YuliiaKovalova in
dotnet/msbuild#13089
* Add Managed Identity for bootstrapper creation by @​rainersigwald in
dotnet/msbuild#13092
* Add warning MSB4280 when DOTNET_HOST_PATH is set to a directory by
@​Copilot in dotnet/msbuild#13091
 ... (truncated)

Commits viewable in [compare
view](dotnet/msbuild@v18.3.3...v18.4.0).
</details>

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Terminal logger quiet mode hides projects

4 participants