10 references to TestRuntime
RunTests (10)
Options.cs (5)
54public TestRuntime TestRuntime { get; set; } = TestRuntime.Both; 146var testRuntime = TestRuntime.Both; 171{ "runtime=", "The runtime to test: both, core or framework", (TestRuntime t) => testRuntime = t},
Program.cs (5)
379static bool IsMatch(TestRuntime testRuntime, string dirName) => 382TestRuntime.Both => true, 383TestRuntime.Core => Regex.IsMatch(dirName, @"^net\d+\."), 384TestRuntime.Framework => dirName is "net472", 385_ => throw new InvalidOperationException($"Unexpected {nameof(TestRuntime)} value: {testRuntime}"),