1 write to _dotnetExecutablePath
Microsoft.CodeAnalysis.LanguageServer (1)
DotnetCliHelper.cs (1)
27
_dotnetExecutablePath
= new Lazy<string>(() => GetDotNetPathOrDefault());
3 references to _dotnetExecutablePath
Microsoft.CodeAnalysis.LanguageServer (3)
DotnetCliHelper.cs (3)
73
_logger.LogDebug($"Running dotnet CLI command at {
_dotnetExecutablePath
.Value} in directory {workingDirectory} with arguments {arguments}");
75
var startInfo = new ProcessStartInfo(
_dotnetExecutablePath
.Value)
107
Contract.ThrowIfNull(process, $"Unable to start dotnet CLI at {
_dotnetExecutablePath
.Value} with arguments {arguments} in directory {workingDirectory}");