Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
4713a5f
Update the minimum msbuild version for .NET 10 (#49531)
marcpopMSFT Aug 22, 2025
3afdcd1
Change MaxParallelTestModulesOption to int (#50548)
mariam-abdulla Aug 29, 2025
115cbcf
Update loc files for templates (#50547)
mariam-abdulla Aug 29, 2025
ae2e197
Clean up duplicate options in dotnet test (#50524)
mariam-abdulla Aug 29, 2025
ccff236
Fix handshaking of dotnet test for MTP (#50513)
Youssef1313 Aug 29, 2025
27d10fd
Disallow RID on solution for MTP dotnet test (#50511)
Youssef1313 Aug 29, 2025
3b155a1
[10.0.1xx] Disable static graph restore for file-based apps (#50532)
jjonescz Aug 29, 2025
95567cd
[10.0.1xx] Consolidate default verbosity of msbuild-based commands (#…
jjonescz Aug 29, 2025
a461d6d
Localized file check-in by OneLocBuild Task: Build definition ID 140:…
dotnet-bot Aug 29, 2025
2b6b0fa
Localized file check-in by OneLocBuild Task: Build definition ID 140:…
dotnet-bot Aug 29, 2025
e1ecbae
Update the minimum msbuild version for .NET 10 (#49531) (#50443)
marcpopMSFT Aug 29, 2025
099eec4
Port Hot Reload changes from main (#50534)
tmat Aug 30, 2025
4ac0b1e
Update dependencies from https://github.com/microsoft/testfx build 20…
dotnet-maestro[bot] Aug 30, 2025
ac8ddfa
Localized file check-in by OneLocBuild Task: Build definition ID 140:…
dotnet-bot Aug 30, 2025
0fdbb34
Localized file check-in by OneLocBuild Task: Build definition ID 140:…
dotnet-bot Aug 30, 2025
08ab490
Localized file check-in by OneLocBuild Task: Build definition ID 140:…
dotnet-bot Aug 30, 2025
11f31cf
Update dependencies from https://github.com/microsoft/testfx build 20…
dotnet-maestro[bot] Aug 31, 2025
4d74d5f
[release/10.0.1xx] Update dependencies from microsoft/testfx (#50557)
SimonZhao888 Sep 1, 2025
94dc353
Update dependencies from https://github.com/microsoft/testfx build 20…
dotnet-maestro[bot] Sep 1, 2025
887f055
Merge branch 'release/10.0.1xx' into locfiles/4ce1c8a6-03d4-4197-88ee…
SimonZhao888 Sep 1, 2025
cdb5ea7
[release/10.0.1xx] Update dependencies from microsoft/testfx (#50566)
SimonZhao888 Sep 1, 2025
3b1b39e
Localized file check-in by OneLocBuild Task: Build definition ID 140:…
SimonZhao888 Sep 1, 2025
e464689
Cleanup dotnet test for MTP (#50552)
Youssef1313 Sep 1, 2025
ec71743
Handle --minimum-expected-tests (#50527)
Youssef1313 Sep 1, 2025
b6dabb1
`dotnet test` MTP: Don't use CallTarget (#50569)
Youssef1313 Sep 1, 2025
0192273
Update dependencies from https://github.com/microsoft/testfx build 20…
dotnet-maestro[bot] Sep 2, 2025
c0df0ff
[release/10.0.1xx] Update dependencies from microsoft/testfx (#50576)
SimonZhao888 Sep 2, 2025
41ed7e3
Merge branch 'main' of https://github.com/dotnet/sdk into merge/relea…
Sep 2, 2025
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

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions src/Cli/dotnet/Commands/CliCommandStrings.resx
Original file line number Diff line number Diff line change
Expand Up @@ -2646,4 +2646,7 @@ Proceed?</value>
<data name="PackCmdVersion" xml:space="preserve">
<value>VERSION</value>
</data>
<data name="CmdMinimumExpectedTestsDescription" xml:space="preserve">
<value>Specifies the minimum number of tests that are expected to run.</value>
</data>
</root>
1 change: 1 addition & 0 deletions src/Cli/dotnet/Commands/Test/ExitCode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ internal static class ExitCode
public const int Success = 0;
public const int GenericFailure = 1;
public const int ZeroTests = 8;
public const int MinimumExpectedTestsPolicyViolation = 9;
}
21 changes: 0 additions & 21 deletions src/Cli/dotnet/Commands/Test/IPC/IClient.cs

This file was deleted.

17 changes: 0 additions & 17 deletions src/Cli/dotnet/Commands/Test/IPC/IServer.cs

This file was deleted.

20 changes: 4 additions & 16 deletions src/Cli/dotnet/Commands/Test/IPC/NamedPipeBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@

#nullable disable

#pragma warning disable IDE0240 // Remove redundant nullable directive
#nullable disable
#pragma warning restore IDE0240 // Remove redundant nullable directive

using System.Globalization;
using Microsoft.DotNet.Cli.Commands.Test.IPC.Serializers;

Expand Down Expand Up @@ -34,13 +30,9 @@ protected INamedPipeSerializer GetSerializer(int id, bool skipUnknownMessages =
return skipUnknownMessages
? new UnknownMessageSerializer(id)
: throw new ArgumentException((string.Format(
CultureInfo.InvariantCulture,
#if dotnet
LocalizableStrings.NoSerializerRegisteredWithIdErrorMessage,
#else
"No serializer registered with ID '{0}'",
#endif
id)));
CultureInfo.InvariantCulture,
CliCommandStrings.NoSerializerRegisteredWithIdErrorMessage,
id)));
}
}

Expand All @@ -50,10 +42,6 @@ protected INamedPipeSerializer GetSerializer(Type type)
? serializer
: throw new ArgumentException(string.Format(
CultureInfo.InvariantCulture,
#if dotnet
LocalizableStrings.NoSerializerRegisteredWithTypeErrorMessage,
#else
"No serializer registered with type '{0}'",
#endif
CliCommandStrings.NoSerializerRegisteredWithTypeErrorMessage,
type));
}
Loading