You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public BuildConfig(boolisReleaseMode,stringframework,stringtargetPlatform,stringpackageVersion,string[]loggers)
769
+
public BuildConfig(boolisReleaseMode,stringframework,stringtargetPlatform,stringpackageVersion)
771
770
{
772
771
IsReleaseMode=isReleaseMode;
773
772
Framework =framework;
774
773
TargetPlatform =targetPlatform;
775
774
PackageVersion =packageVersion;
776
-
Loggers =loggers;
777
775
}
778
776
}
779
777
780
-
string[]CreateLoggers()
778
+
string[]CreateLoggers(stringprojectName)
781
779
{
782
-
var testResultsFile = outputDirectory.Combine("test-results").Combine($"TEST-{target.ToLowerInvariant()}-{DateTimeOffset.UtcNow.ToUnixTimeMilliseconds()}.xml");
780
+
var testResultsFile = outputDirectory.Combine("test-results").Combine($"TEST-{projectName}-{target.ToLowerInvariant()}-{DateTimeOffset.UtcNow.ToUnixTimeMilliseconds()}.xml");
781
+
783
782
// Evergreen CI server requires JUnit output format to display test results
784
783
var junitLogger = $"junit;LogFilePath={testResultsFile};FailureBodyFormat=Verbose";
0 commit comments