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)
382static bool IsMatch(TestRuntime testRuntime, string dirName) => 385TestRuntime.Both => true, 386TestRuntime.Core => Regex.IsMatch(dirName, @"^net\d+\."), 387TestRuntime.Framework => dirName is "net472", 388_ => throw new InvalidOperationException($"Unexpected {nameof(TestRuntime)} value: {testRuntime}"),