Skip to content
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

[automated] Merge branch 'release/9.0.1xx' => 'release/9.0.2xx' #44665

Merged
merged 39 commits into from
Nov 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
024a33e
Remove net2.1 targets for test that's failing sometimes
marcpopMSFT Oct 24, 2024
1e00891
Update dependencies from https://github.com/dotnet/test-templates bui…
dotnet-maestro[bot] Oct 25, 2024
987bb59
Gather test diag logging to track down nuget issue
marcpopMSFT Oct 25, 2024
6ecb683
Add diagnostic verbosity to all msbuild commands. Test output is goin…
marcpopMSFT Oct 25, 2024
fc71602
Let's try removing the additional TL characters instead.
marcpopMSFT Oct 25, 2024
8695876
Update dependencies from https://github.com/dotnet/roslyn build 20241…
dotnet-maestro[bot] Oct 27, 2024
dad1162
Update dependencies from https://github.com/dotnet/sourcelink build 2…
dotnet-maestro[bot] Oct 27, 2024
9a726b4
Merge branch 'release/9.0.1xx' of https://github.com/dotnet/sdk into …
v-wuzhai Oct 28, 2024
0344619
Merge branch 'release/9.0.1xx' of https://github.com/dotnet/sdk into …
v-wuzhai Oct 28, 2024
c4e82c8
Merge branch 'release/9.0.1xx' of https://github.com/dotnet/sdk into …
v-wuzhai Oct 28, 2024
7dd309d
Update dependencies from https://github.com/dotnet/sourcelink build 2…
dotnet-maestro[bot] Oct 29, 2024
348977d
Turning on diag for all commands causes significant issues in the tes…
marcpopMSFT Oct 29, 2024
230e174
Update dependencies from https://github.com/dotnet/test-templates bui…
dotnet-maestro[bot] Oct 30, 2024
531d2a5
Update dependencies from https://github.com/dotnet/test-templates bui…
dotnet-maestro[bot] Oct 30, 2024
023b1e6
Update dependencies from https://github.com/dotnet/test-templates bui…
dotnet-maestro[bot] Oct 30, 2024
cb1963b
Update dependencies from https://github.com/dotnet/sourcelink build 2…
dotnet-maestro[bot] Oct 31, 2024
92728e4
Update dependencies from https://github.com/dotnet/test-templates bui…
dotnet-maestro[bot] Oct 31, 2024
09f26ea
Update dependencies from https://github.com/dotnet/roslyn build 20241…
dotnet-maestro[bot] Nov 1, 2024
3c9f673
Update dependencies from https://github.com/dotnet/sourcelink build 2…
dotnet-maestro[bot] Nov 1, 2024
5edd576
Update dependencies from https://github.com/dotnet/test-templates bui…
dotnet-maestro[bot] Nov 1, 2024
a62484e
Update dependencies from https://github.com/nuget/nuget.client build …
dotnet-maestro[bot] Nov 1, 2024
de15879
Update dependencies from https://github.com/dotnet/test-templates bui…
dotnet-maestro[bot] Nov 4, 2024
1e24195
Update dependencies from https://github.com/dotnet/roslyn build 20241…
dotnet-maestro[bot] Nov 5, 2024
7af615f
Update dependencies from https://github.com/dotnet/sourcelink build 2…
dotnet-maestro[bot] Nov 5, 2024
c0124ec
Update dependencies from https://github.com/dotnet/test-templates bui…
dotnet-maestro[bot] Nov 5, 2024
2eb8635
Update dependencies from https://github.com/dotnet/templating build 2…
dotnet-maestro[bot] Nov 5, 2024
b45e223
Update branding to 9.0.101
vseanreesermsft Nov 5, 2024
c2f2b1c
Update branding to 9.0.101 (#44660)
marcpopMSFT Nov 5, 2024
905b1e3
[release/9.0.1xx] Update dependencies from dotnet/templating (#44659)
MiYanni Nov 5, 2024
1c2d606
Revert "[release/9.0.1xx] Update dependencies from dotnet/templating"
MiYanni Nov 5, 2024
316356f
Gather test diag logging to track down nuget issue (#44455)
marcpopMSFT Nov 5, 2024
99271d1
Remove additional TL characters from the dotnet run output special ca…
marcpopMSFT Nov 5, 2024
76285fe
Revert "[release/9.0.1xx] Update dependencies from dotnet/templating"…
MiYanni Nov 6, 2024
1f9a562
[release/9.0.1xx] Update dependencies from dotnet/roslyn (#44476)
v-wuzhai Nov 6, 2024
3ba3cbe
[release/9.0.1xx] Update dependencies from dotnet/test-templates (#44…
v-wuzhai Nov 6, 2024
926c70a
[release/9.0.1xx] Update dependencies from dotnet/sourcelink (#44477)
v-wuzhai Nov 6, 2024
2b22709
Merge branch 'release/9.0.1xx' of https://github.com/dotnet/sdk into …
v-wuzhai Nov 6, 2024
832ef1b
[release/9.0.1xx] Update dependencies from nuget/nuget.client (#44596)
v-wuzhai Nov 6, 2024
f7700e0
Merge branch 'release/9.0.2xx' of https://github.com/dotnet/sdk into …
v-wuzhai Nov 6, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion test/Microsoft.NET.TestFramework/Commands/MSBuildCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,17 @@ public override CommandResult Execute(IEnumerable<string> args)
args = new[] { "/restore" }.Concat(args);
}

return base.Execute(args);
var command = base.Execute(args);

var error = command.StdErr.ToString();
var output = command.StdOut.ToString();
if ((!String.IsNullOrEmpty(error) && error.Contains("NU3003")) || (!String.IsNullOrEmpty(output) && output.Contains("NU3003")))
{
args = args.Concat(new[] { "-v:diag" });
command = base.Execute(args);
}

return command;
}

public CommandResult ExecuteWithoutRestore(IEnumerable<string> args)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ public static string StripTerminalLoggerProgressIndicators(this string stdout)
{
return stdout
.Replace("\x1b]9;4;3;\x1b\\", "") // indeterminate progress start
.Replace("\x1b]9;4;0;\x1b\\", ""); // indeterminate progress end
.Replace("\x1b]9;4;0;\x1b\\", "") // indeterminate progress end
.Replace("\x1b[?25l", "") // make cursor invisble
.Replace("\x1b[?25h", ""); // make cursor visible
}
}
}