public void ValidateDebuggerLocation(FilePath location)
 {
     if (!location.IsNullOrEmpty)
     {
         DotNetCoreDebuggerPath = new DotNetCoreDebuggerPath(location);
     }
     else
     {
         DotNetCoreDebuggerPath = null;
     }
 }
        public void SaveDebuggerLocationSetting(FilePath location)
        {
            if (location == DotNetCoreDebuggerRuntime.FileName)
            {
                return;
            }

            var path = new DotNetCoreDebuggerPath(location);

            DotNetCoreDebuggerRuntime.Update(path);
        }