2 writes to _solutionPath
IdeCoreBenchmarks (2)
IncrementalSourceGeneratorBenchmarks.cs (2)
53_solutionPath = Path.Combine(roslynRoot, @"Compilers.slnf"); 63_solutionPath = Path.Combine(roslynRoot, @"Roslyn.sln");
4 references to _solutionPath
IdeCoreBenchmarks (4)
IncrementalSourceGeneratorBenchmarks.cs (4)
54var restoreOperation = Process.Start("dotnet", $"restore /p:UseSharedCompilation=false /p:BuildInParallel=false /m:1 /p:Deterministic=true /p:Optimize=true {_solutionPath}"); 57throw new ArgumentException($"Unable to restore {_solutionPath}"); 65if (!File.Exists(_solutionPath)) 87var solution = _workspace.OpenSolutionAsync(_solutionPath, progress: null, CancellationToken.None).Result;