@@ -94,15 +94,15 @@ IEnumerable<string> GetOutcomes(AbsolutePath file)
9494
9595 sealed Configure < DotNetTestSettings , Project > TestProjectSettingsBase => ( _ , v ) => _
9696 . SetProjectFile ( v )
97- // https://github.com/Tyrrrz/GitHubActionsTestLogger
98- . When ( GitHubActions . Instance is not null && v . HasPackageReference ( "GitHubActionsTestLogger" ) , _ => _
99- . AddLoggers ( "GitHubActions;report-warnings=false" ) )
100- // https://github.com/JetBrains/TeamCity.VSTest.TestAdapter
101- . When ( TeamCity . Instance is not null && v . HasPackageReference ( "TeamCity.VSTest.TestAdapter" ) , _ => _
102- . AddLoggers ( "TeamCity" )
103- // https://github.com/xunit/visualstudio.xunit/pull/108
104- . AddRunSetting ( "RunConfiguration.NoAutoReporters" , bool . TrueString ) )
105- . AddLoggers ( $ "trx;LogFileName={ v . Name } .trx")
97+ // // https://github.com/Tyrrrz/GitHubActionsTestLogger
98+ // .When(GitHubActions.Instance is not null && v.HasPackageReference("GitHubActionsTestLogger"), _ => _
99+ // .AddLoggers("GitHubActions;report-warnings=false"))
100+ // // https://github.com/JetBrains/TeamCity.VSTest.TestAdapter
101+ // .When(TeamCity.Instance is not null && v.HasPackageReference("TeamCity.VSTest.TestAdapter"), _ => _
102+ // .AddLoggers("TeamCity")
103+ // // https://github.com/xunit/visualstudio.xunit/pull/108
104+ // .AddRunSetting("RunConfiguration.NoAutoReporters", bool.TrueString))
105+ // .AddLoggers($"trx;LogFileName={v.Name}.trx")
106106 . When ( InvokedTargets . Contains ( ( this as IReportCoverage ) ? . ReportCoverage ) || IsServerBuild , _ => _
107107 . SetCoverletOutput ( TestResultDirectory / $ "{ v . Name } .xml") ) ;
108108
0 commit comments