-
Couldn't load subscription status.
- Fork 1.4k
Make Terminal Logger respect verbosity #9810
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
fbc9a4f
make TL respect verbosity
AR-May 896d0ac
Remove unused variables
AR-May e275441
Fix accidentally removed line
AR-May 582d6db
Try to fix OSX test.
AR-May e725dd4
Try to fix OSX test - 2
AR-May 1b202b3
Address comments
AR-May 9b9cabd
Merge branch 'main' into tl-respect-verbosity-2
AR-May efb5cf7
Fix merge error
AR-May 0e34e84
Add parameters parsing
AR-May 7dd402f
Add a test, fix typo
AR-May 01cf9d6
Merge branch 'main' into tl-respect-verbosity-2
AR-May 7df23fd
fix merge bugs
AR-May ed9d5ee
Address PR comments
AR-May 3dd2f15
Merge branch 'main' into tl-respect-verbosity-2
AR-May 015c200
Address PR comments
AR-May File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,69 @@ | ||
| // Licensed to the .NET Foundation under one or more agreements. | ||
| // The .NET Foundation licenses this file to you under the MIT license. | ||
|
|
||
| using System; | ||
| using System.Collections.Generic; | ||
| using System.Diagnostics.CodeAnalysis; | ||
| using System.Linq; | ||
| using System.Text; | ||
| using System.Threading.Tasks; | ||
| using Microsoft.Build.Shared; | ||
|
|
||
| namespace Microsoft.Build.Framework.Logging | ||
| { | ||
| internal static class LoggerParametersHelper | ||
| { | ||
| // Logger parameters delimiters. | ||
| public static readonly char[] s_parameterDelimiters = MSBuildConstants.SemicolonChar; | ||
|
|
||
| // Logger parameter value split character. | ||
| public static readonly char[] s_parameterValueSplitCharacter = MSBuildConstants.EqualsChar; | ||
|
|
||
| public static bool TryParseVerbosityParameter(string parameterValue, [NotNullWhen(true)] out LoggerVerbosity? verbosity) | ||
| { | ||
| switch (parameterValue.ToUpperInvariant()) | ||
| { | ||
| case "Q": | ||
| case "QUIET": | ||
| verbosity = LoggerVerbosity.Quiet; | ||
| return true; | ||
| case "M": | ||
| case "MINIMAL": | ||
| verbosity = LoggerVerbosity.Minimal; | ||
| return true; | ||
| case "N": | ||
| case "NORMAL": | ||
| verbosity = LoggerVerbosity.Normal; | ||
| return true; | ||
| case "D": | ||
| case "DETAILED": | ||
| verbosity = LoggerVerbosity.Detailed; | ||
| return true; | ||
| case "DIAG": | ||
| case "DIAGNOSTIC": | ||
| verbosity = LoggerVerbosity.Diagnostic; | ||
| return true; | ||
| default: | ||
| verbosity = null; | ||
| return false; | ||
| } | ||
| } | ||
|
|
||
| public static IEnumerable<Tuple<string, string?>> ParseParameters(string? parametersString) | ||
AR-May marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| { | ||
| if (parametersString is not null) | ||
| { | ||
| foreach (string parameter in parametersString.Split(s_parameterDelimiters)) | ||
| { | ||
| if (string.IsNullOrWhiteSpace(parameter)) | ||
| { | ||
| continue; | ||
| } | ||
|
|
||
| string[] parameterAndValue = parameter.Split(s_parameterValueSplitCharacter); | ||
| yield return new Tuple<string, string?>(parameterAndValue[0], parameterAndValue.Length > 1 ? parameterAndValue[1] : null); | ||
| } | ||
| } | ||
| } | ||
| } | ||
| } | ||
9 changes: 9 additions & 0 deletions
9
...rminalLogger_Tests.PrintBuildSummaryDetailedVerbosity_FailedWithErrors.Linux.verified.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| ]9;4;3;\The plugin credential provider could not acquire credentials.Authentication may require manual action. Consider re-running the command with --interactive for `dotnet`, /p:NuGetInteractive="true" for MSBuild or removing the -NonInteractive switch for `NuGet` | ||
| project [31;1mfailed with 1 error(s) and 1 warning(s)[m (0.2s) | ||
| High importance message! | ||
| directory/[1mfile[m(1,2,3,4): [33;1mwarning[m [33;1mAA0000[m: Warning! | ||
| directory/[1mfile[m(1,2,3,4): [31;1merror[m [31;1mAA0000[m: Error! | ||
| [?25l[1F | ||
| [?25h | ||
| Build [31;1mfailed with 1 error(s) and 1 warning(s)[m in 5.0s | ||
| ]9;4;0;\ |
8 changes: 8 additions & 0 deletions
8
...TerminalLogger_Tests.PrintBuildSummaryDetailedVerbosity_FailedWithErrors.OSX.verified.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| The plugin credential provider could not acquire credentials.Authentication may require manual action. Consider re-running the command with --interactive for `dotnet`, /p:NuGetInteractive="true" for MSBuild or removing the -NonInteractive switch for `NuGet` | ||
| project [31;1mfailed with 1 error(s) and 1 warning(s)[m (0.2s) | ||
| High importance message! | ||
| directory/[1mfile[m(1,2,3,4): [33;1mwarning[m [33;1mAA0000[m: Warning! | ||
| directory/[1mfile[m(1,2,3,4): [31;1merror[m [31;1mAA0000[m: Error! | ||
| [?25l[1F | ||
| [?25h | ||
| Build [31;1mfailed with 1 error(s) and 1 warning(s)[m in 5.0s |
9 changes: 9 additions & 0 deletions
9
...inalLogger_Tests.PrintBuildSummaryDetailedVerbosity_FailedWithErrors.Windows.verified.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| ]9;4;3;\The plugin credential provider could not acquire credentials.Authentication may require manual action. Consider re-running the command with --interactive for `dotnet`, /p:NuGetInteractive="true" for MSBuild or removing the -NonInteractive switch for `NuGet` | ||
| project [31;1mfailed with 1 error(s) and 1 warning(s)[m (0.2s) | ||
| High importance message! | ||
| directory/[1mfile[m(1,2,3,4): [33;1mwarning[m [33;1mAA0000[m: Warning! | ||
| directory/[1mfile[m(1,2,3,4): [31;1merror[m [31;1mAA0000[m: Error! | ||
| [?25l[1F | ||
| [?25h | ||
| Build [31;1mfailed with 1 error(s) and 1 warning(s)[m in 5.0s | ||
| ]9;4;0;\ |
9 changes: 9 additions & 0 deletions
9
...inalLogger_Tests.PrintBuildSummaryDiagnosticVerbosity_FailedWithErrors.Linux.verified.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| ]9;4;3;\The plugin credential provider could not acquire credentials.Authentication may require manual action. Consider re-running the command with --interactive for `dotnet`, /p:NuGetInteractive="true" for MSBuild or removing the -NonInteractive switch for `NuGet` | ||
| project [31;1mfailed with 1 error(s) and 1 warning(s)[m (0.2s) | ||
| High importance message! | ||
| directory/[1mfile[m(1,2,3,4): [33;1mwarning[m [33;1mAA0000[m: Warning! | ||
| directory/[1mfile[m(1,2,3,4): [31;1merror[m [31;1mAA0000[m: Error! | ||
| [?25l[1F | ||
| [?25h | ||
| Build [31;1mfailed with 1 error(s) and 1 warning(s)[m in 5.0s | ||
| ]9;4;0;\ |
8 changes: 8 additions & 0 deletions
8
...rminalLogger_Tests.PrintBuildSummaryDiagnosticVerbosity_FailedWithErrors.OSX.verified.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| The plugin credential provider could not acquire credentials.Authentication may require manual action. Consider re-running the command with --interactive for `dotnet`, /p:NuGetInteractive="true" for MSBuild or removing the -NonInteractive switch for `NuGet` | ||
| project [31;1mfailed with 1 error(s) and 1 warning(s)[m (0.2s) | ||
| High importance message! | ||
| directory/[1mfile[m(1,2,3,4): [33;1mwarning[m [33;1mAA0000[m: Warning! | ||
| directory/[1mfile[m(1,2,3,4): [31;1merror[m [31;1mAA0000[m: Error! | ||
| [?25l[1F | ||
| [?25h | ||
| Build [31;1mfailed with 1 error(s) and 1 warning(s)[m in 5.0s |
9 changes: 9 additions & 0 deletions
9
...alLogger_Tests.PrintBuildSummaryDiagnosticVerbosity_FailedWithErrors.Windows.verified.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| ]9;4;3;\The plugin credential provider could not acquire credentials.Authentication may require manual action. Consider re-running the command with --interactive for `dotnet`, /p:NuGetInteractive="true" for MSBuild or removing the -NonInteractive switch for `NuGet` | ||
| project [31;1mfailed with 1 error(s) and 1 warning(s)[m (0.2s) | ||
| High importance message! | ||
| directory/[1mfile[m(1,2,3,4): [33;1mwarning[m [33;1mAA0000[m: Warning! | ||
| directory/[1mfile[m(1,2,3,4): [31;1merror[m [31;1mAA0000[m: Error! | ||
| [?25l[1F | ||
| [?25h | ||
| Build [31;1mfailed with 1 error(s) and 1 warning(s)[m in 5.0s | ||
| ]9;4;0;\ |
8 changes: 8 additions & 0 deletions
8
...erminalLogger_Tests.PrintBuildSummaryMinimalVerbosity_FailedWithErrors.Linux.verified.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| ]9;4;3;\The plugin credential provider could not acquire credentials.Authentication may require manual action. Consider re-running the command with --interactive for `dotnet`, /p:NuGetInteractive="true" for MSBuild or removing the -NonInteractive switch for `NuGet` | ||
| project [31;1mfailed with 1 error(s) and 1 warning(s)[m (0.2s) | ||
| directory/[1mfile[m(1,2,3,4): [33;1mwarning[m [33;1mAA0000[m: Warning! | ||
| directory/[1mfile[m(1,2,3,4): [31;1merror[m [31;1mAA0000[m: Error! | ||
| [?25l[1F | ||
| [?25h | ||
| Build [31;1mfailed with 1 error(s) and 1 warning(s)[m in 5.0s | ||
| ]9;4;0;\ |
7 changes: 7 additions & 0 deletions
7
.../TerminalLogger_Tests.PrintBuildSummaryMinimalVerbosity_FailedWithErrors.OSX.verified.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| The plugin credential provider could not acquire credentials.Authentication may require manual action. Consider re-running the command with --interactive for `dotnet`, /p:NuGetInteractive="true" for MSBuild or removing the -NonInteractive switch for `NuGet` | ||
| project [31;1mfailed with 1 error(s) and 1 warning(s)[m (0.2s) | ||
| directory/[1mfile[m(1,2,3,4): [33;1mwarning[m [33;1mAA0000[m: Warning! | ||
| directory/[1mfile[m(1,2,3,4): [31;1merror[m [31;1mAA0000[m: Error! | ||
| [?25l[1F | ||
| [?25h | ||
| Build [31;1mfailed with 1 error(s) and 1 warning(s)[m in 5.0s |
8 changes: 8 additions & 0 deletions
8
...minalLogger_Tests.PrintBuildSummaryMinimalVerbosity_FailedWithErrors.Windows.verified.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| ]9;4;3;\The plugin credential provider could not acquire credentials.Authentication may require manual action. Consider re-running the command with --interactive for `dotnet`, /p:NuGetInteractive="true" for MSBuild or removing the -NonInteractive switch for `NuGet` | ||
| project [31;1mfailed with 1 error(s) and 1 warning(s)[m (0.2s) | ||
| directory/[1mfile[m(1,2,3,4): [33;1mwarning[m [33;1mAA0000[m: Warning! | ||
| directory/[1mfile[m(1,2,3,4): [31;1merror[m [31;1mAA0000[m: Error! | ||
| [?25l[1F | ||
| [?25h | ||
| Build [31;1mfailed with 1 error(s) and 1 warning(s)[m in 5.0s | ||
| ]9;4;0;\ |
8 changes: 8 additions & 0 deletions
8
...TerminalLogger_Tests.PrintBuildSummaryNormalVerbosity_FailedWithErrors.Linux.verified.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| ]9;4;3;\The plugin credential provider could not acquire credentials.Authentication may require manual action. Consider re-running the command with --interactive for `dotnet`, /p:NuGetInteractive="true" for MSBuild or removing the -NonInteractive switch for `NuGet` | ||
| project [31;1mfailed with 1 error(s) and 1 warning(s)[m (0.2s) | ||
| directory/[1mfile[m(1,2,3,4): [33;1mwarning[m [33;1mAA0000[m: Warning! | ||
| directory/[1mfile[m(1,2,3,4): [31;1merror[m [31;1mAA0000[m: Error! | ||
| [?25l[1F | ||
| [?25h | ||
| Build [31;1mfailed with 1 error(s) and 1 warning(s)[m in 5.0s | ||
| ]9;4;0;\ |
7 changes: 7 additions & 0 deletions
7
...s/TerminalLogger_Tests.PrintBuildSummaryNormalVerbosity_FailedWithErrors.OSX.verified.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| The plugin credential provider could not acquire credentials.Authentication may require manual action. Consider re-running the command with --interactive for `dotnet`, /p:NuGetInteractive="true" for MSBuild or removing the -NonInteractive switch for `NuGet` | ||
| project [31;1mfailed with 1 error(s) and 1 warning(s)[m (0.2s) | ||
| directory/[1mfile[m(1,2,3,4): [33;1mwarning[m [33;1mAA0000[m: Warning! | ||
| directory/[1mfile[m(1,2,3,4): [31;1merror[m [31;1mAA0000[m: Error! | ||
| [?25l[1F | ||
| [?25h | ||
| Build [31;1mfailed with 1 error(s) and 1 warning(s)[m in 5.0s |
8 changes: 8 additions & 0 deletions
8
...rminalLogger_Tests.PrintBuildSummaryNormalVerbosity_FailedWithErrors.Windows.verified.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| ]9;4;3;\The plugin credential provider could not acquire credentials.Authentication may require manual action. Consider re-running the command with --interactive for `dotnet`, /p:NuGetInteractive="true" for MSBuild or removing the -NonInteractive switch for `NuGet` | ||
| project [31;1mfailed with 1 error(s) and 1 warning(s)[m (0.2s) | ||
| directory/[1mfile[m(1,2,3,4): [33;1mwarning[m [33;1mAA0000[m: Warning! | ||
| directory/[1mfile[m(1,2,3,4): [31;1merror[m [31;1mAA0000[m: Error! | ||
| [?25l[1F | ||
| [?25h | ||
| Build [31;1mfailed with 1 error(s) and 1 warning(s)[m in 5.0s | ||
| ]9;4;0;\ |
3 changes: 3 additions & 0 deletions
3
.../TerminalLogger_Tests.PrintBuildSummaryQuietVerbosity_FailedWithErrors.Linux.verified.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| ]9;4;3;\directory/[1mfile[m(1,2,3,4): [33;1mwarning[m [33;1mAA0000[m: Warning! | ||
| directory/[1mfile[m(1,2,3,4): [31;1merror[m [31;1mAA0000[m: Error! | ||
| ]9;4;0;\ |
2 changes: 2 additions & 0 deletions
2
...ts/TerminalLogger_Tests.PrintBuildSummaryQuietVerbosity_FailedWithErrors.OSX.verified.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| directory/[1mfile[m(1,2,3,4): [33;1mwarning[m [33;1mAA0000[m: Warning! | ||
| directory/[1mfile[m(1,2,3,4): [31;1merror[m [31;1mAA0000[m: Error! |
3 changes: 3 additions & 0 deletions
3
...erminalLogger_Tests.PrintBuildSummaryQuietVerbosity_FailedWithErrors.Windows.verified.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| ]9;4;3;\directory/[1mfile[m(1,2,3,4): [33;1mwarning[m [33;1mAA0000[m: Warning! | ||
| directory/[1mfile[m(1,2,3,4): [31;1merror[m [31;1mAA0000[m: Error! | ||
| ]9;4;0;\ |
9 changes: 9 additions & 0 deletions
9
...inalLogger_Tests.PrintSummaryWithOverwrittenVerbosity_FailedWithErrors.Linux.verified.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| ]9;4;3;\The plugin credential provider could not acquire credentials.Authentication may require manual action. Consider re-running the command with --interactive for `dotnet`, /p:NuGetInteractive="true" for MSBuild or removing the -NonInteractive switch for `NuGet` | ||
| project [31;1mfailed with 1 error(s) and 1 warning(s)[m (0.2s) | ||
| High importance message! | ||
| directory/[1mfile[m(1,2,3,4): [33;1mwarning[m [33;1mAA0000[m: Warning! | ||
| directory/[1mfile[m(1,2,3,4): [31;1merror[m [31;1mAA0000[m: Error! | ||
| [?25l[1F | ||
| [?25h | ||
| Build [31;1mfailed with 1 error(s) and 1 warning(s)[m in 5.0s | ||
| ]9;4;0;\ |
8 changes: 8 additions & 0 deletions
8
...rminalLogger_Tests.PrintSummaryWithOverwrittenVerbosity_FailedWithErrors.OSX.verified.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| The plugin credential provider could not acquire credentials.Authentication may require manual action. Consider re-running the command with --interactive for `dotnet`, /p:NuGetInteractive="true" for MSBuild or removing the -NonInteractive switch for `NuGet` | ||
| project [31;1mfailed with 1 error(s) and 1 warning(s)[m (0.2s) | ||
| High importance message! | ||
| directory/[1mfile[m(1,2,3,4): [33;1mwarning[m [33;1mAA0000[m: Warning! | ||
| directory/[1mfile[m(1,2,3,4): [31;1merror[m [31;1mAA0000[m: Error! | ||
| [?25l[1F | ||
| [?25h | ||
| Build [31;1mfailed with 1 error(s) and 1 warning(s)[m in 5.0s |
9 changes: 9 additions & 0 deletions
9
...alLogger_Tests.PrintSummaryWithOverwrittenVerbosity_FailedWithErrors.Windows.verified.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| ]9;4;3;\The plugin credential provider could not acquire credentials.Authentication may require manual action. Consider re-running the command with --interactive for `dotnet`, /p:NuGetInteractive="true" for MSBuild or removing the -NonInteractive switch for `NuGet` | ||
| project [31;1mfailed with 1 error(s) and 1 warning(s)[m (0.2s) | ||
| High importance message! | ||
| directory/[1mfile[m(1,2,3,4): [33;1mwarning[m [33;1mAA0000[m: Warning! | ||
| directory/[1mfile[m(1,2,3,4): [31;1merror[m [31;1mAA0000[m: Error! | ||
| [?25l[1F | ||
| [?25h | ||
| Build [31;1mfailed with 1 error(s) and 1 warning(s)[m in 5.0s | ||
| ]9;4;0;\ |
6 changes: 6 additions & 0 deletions
6
...erminalLogger_Tests.PrintSummaryWithTaskCommandLineEventArgs_Succeeded.Linux.verified.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| ]9;4;3;\ project [32;1msucceeded[m (0.2s) | ||
| Task Command Line. | ||
| [?25l[1F | ||
| [?25h | ||
| Build [32;1msucceeded[m in 5.0s | ||
| ]9;4;0;\ |
5 changes: 5 additions & 0 deletions
5
.../TerminalLogger_Tests.PrintSummaryWithTaskCommandLineEventArgs_Succeeded.OSX.verified.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| project [32;1msucceeded[m (0.2s) | ||
| Task Command Line. | ||
| [?25l[1F | ||
| [?25h | ||
| Build [32;1msucceeded[m in 5.0s |
6 changes: 6 additions & 0 deletions
6
...minalLogger_Tests.PrintSummaryWithTaskCommandLineEventArgs_Succeeded.Windows.verified.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| ]9;4;3;\ project [32;1msucceeded[m (0.2s) | ||
| Task Command Line. | ||
| [?25l[1F | ||
| [?25h | ||
| Build [32;1msucceeded[m in 5.0s | ||
| ]9;4;0;\ |
4 changes: 4 additions & 0 deletions
4
...inalLogger_Tests.PrintSummaryWithoutTaskCommandLineEventArgs_Succeeded.Linux.verified.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| ]9;4;3;\[?25l[1F | ||
| [?25h | ||
| Build [32;1msucceeded[m in 5.0s | ||
| ]9;4;0;\ |
3 changes: 3 additions & 0 deletions
3
...rminalLogger_Tests.PrintSummaryWithoutTaskCommandLineEventArgs_Succeeded.OSX.verified.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| [?25l[1F | ||
| [?25h | ||
| Build [32;1msucceeded[m in 5.0s |
4 changes: 4 additions & 0 deletions
4
...alLogger_Tests.PrintSummaryWithoutTaskCommandLineEventArgs_Succeeded.Windows.verified.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| ]9;4;3;\[?25l[1F | ||
| [?25h | ||
| Build [32;1msucceeded[m in 5.0s | ||
| ]9;4;0;\ |
6 changes: 6 additions & 0 deletions
6
...apshots/TerminalLogger_Tests.PrintTestSummaryNormalVerbosity_Succeeded.Linux.verified.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| ]9;4;3;\ project test [32;1msucceeded[m (0.2s) | ||
| [?25l[1F | ||
| [?25h | ||
| Build [32;1msucceeded[m in 5.0s | ||
| Test run [31;1mfailed[m. Total: 10 Failed: 1 Passed: 7 Skipped: 2, Duration: 1.0s | ||
| ]9;4;0;\ |
5 changes: 5 additions & 0 deletions
5
...Snapshots/TerminalLogger_Tests.PrintTestSummaryNormalVerbosity_Succeeded.OSX.verified.txt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| project test [32;1msucceeded[m (0.2s) | ||
| [?25l[1F | ||
| [?25h | ||
| Build [32;1msucceeded[m in 5.0s | ||
| Test run [31;1mfailed[m. Total: 10 Failed: 1 Passed: 7 Skipped: 2, Duration: 1.0s |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.