File tree 3 files changed +4
-7
lines changed
src/Platform/Microsoft.Testing.Platform.MSBuild/Tasks
3 files changed +4
-7
lines changed Original file line number Diff line number Diff line change 1
1
<Project >
2
2
<PropertyGroup Label =" Version settings" >
3
3
<!-- MSTest version -->
4
- <VersionPrefix >3.10 .0</VersionPrefix >
4
+ <VersionPrefix >3.9 .0</VersionPrefix >
5
5
<!-- Testing Platform version -->
6
- <TestingPlatformVersionPrefix >1.8 .0</TestingPlatformVersionPrefix >
6
+ <TestingPlatformVersionPrefix >1.7 .0</TestingPlatformVersionPrefix >
7
7
<PreReleaseVersionLabel >preview</PreReleaseVersionLabel >
8
8
</PropertyGroup >
9
9
<PropertyGroup Label =" MSTest prod dependencies - darc updated" >
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ public class TestClass
15
15
[ TestMethod ]
16
16
[ DynamicData ( nameof ( Data ) ) ]
17
17
public void Test3 ( int a , int b )
18
- => Assert . AreNotEqual ( a , b ) ;
18
+ => throw new Exception ( "aaaa" ) ;
19
19
20
20
public static IEnumerable < ( int A , int B ) > Data
21
21
{
Original file line number Diff line number Diff line change @@ -489,10 +489,7 @@ private Task<IResponse> HandleRequestAsync(IRequest request)
489
489
runSummaryInfoRequest . Total ,
490
490
runSummaryInfoRequest . Duration ) ;
491
491
492
- if ( _moduleInfo != null )
493
- {
494
- summary += $ " - { TargetPath . ItemSpec } ({ TargetFrameworkParser . GetShortTargetFramework ( TargetFramework . ItemSpec ) } |{ TestArchitecture . ItemSpec } )";
495
- }
492
+ summary += $ " - { Path . GetFileName ( TargetPath . ItemSpec ) } ({ TargetFrameworkParser . GetShortTargetFramework ( TargetFramework . ItemSpec ) } |{ TestArchitecture . ItemSpec } )";
496
493
497
494
if ( MSBuildCompatibilityHelper . SupportsTerminalLoggerWithExtendedMessages ( ) )
498
495
{
You can’t perform that action at this time.
0 commit comments