Skip to content

Instantly share code, notes, and snippets.

@awittaker
Last active January 10, 2020 00:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save awittaker/d7ffa77e30d1231a9fb800f07b0a5066 to your computer and use it in GitHub Desktop.
Save awittaker/d7ffa77e30d1231a9fb800f07b0a5066 to your computer and use it in GitHub Desktop.
GtkSharp app to show mouse-click swallow issue when debugging in Rider
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.2</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="GtkSharp" Version="3.22.25.56" />
</ItemGroup>
</Project>
using System;
using Gtk;
namespace GtkApp
{
class Program
{
private static Entry _entry;
private static EntryCompletion _completion;
private static int _MatchCallCount;
static void Main(string[] args)
{
string test = "Hello World!";
Console.WriteLine(test);
_MatchCallCount = 0;
Application.Init();
_entry = new Entry();
_entry.Text = "example";
// create values store
var store = new ListStore(typeof(string));
store.AppendValues("An example to search for");
store.AppendValues("Better example");
// create completion object and assign values store
_completion = new EntryCompletion {Model = store, TextColumn = 0, PopupSetWidth = false};
// link completion object to the Entry
_entry.Completion = _completion;
// override the default match function so we can trigger break whilst completion popup is open
_completion.MatchFunc = MatchFunc;
Label label = new Label("Every few edits of text below will trigger break...");
Box vbox = new Box(Orientation.Vertical, 5) {label, _entry};
Window window = new Window("Rider crash test - run in debugger")
{vbox};
var app = new Application("rider.crash.test", GLib.ApplicationFlags.None);
app.Register(GLib.Cancellable.Current);
app.AddWindow(window);
window.ShowAll();
Application.Run();
}
private static bool MatchFunc(EntryCompletion completion, string key, TreeIter iter)
{
Console.WriteLine($"MatchCallCount: {_MatchCallCount++}");
if (_MatchCallCount % 6 == 0) // First few times to get the first popup, then trigger issue
{
Console.WriteLine($"kitkat time: Alt-Tab to Rider and F5 to continue");
Console.WriteLine($"In XFCE (at least) all mouse presses are ignored.");
System.Diagnostics.Debugger.Break();
Console.WriteLine($"Carrying on...");
}
return true;
}
}
}
2020-01-10 00:27:34,624 | INFO | Main | ------------------------------------------------------ IDE STARTED ------------------------------------------------------
2020-01-10 00:27:34,647 | INFO | Main | IDE: JetBrains Rider (build #RD-193.5662.14, 19 Dec 2019 19:00)
2020-01-10 00:27:34,651 | INFO | Main | OS: Linux (5.3.0-26-generic, amd64)
2020-01-10 00:27:34,652 | INFO | Main | JRE: 11.0.5+10-b520.17 (JetBrains s.r.o)
2020-01-10 00:27:34,652 | INFO | Main | JVM: 11.0.5+10-b520.17 (OpenJDK 64-Bit Server VM)
2020-01-10 00:27:34,652 | INFO | Main | JVM Args: -Xms128m -Xmx1500m -XX:ReservedCodeCacheSize=240m -XX:+UseConcMarkSweepGC -XX:SoftRefLRUPolicyMSPerMB=50 -ea -XX:CICompilerCount=2 -Dsun.io.useCanonPrefixCache=false -Djava.net.preferIPv4Stack=true -Djdk.http.auth.tunneling.disabledSchemes="" -XX:+HeapDumpOnOutOfMemoryError -XX:-OmitStackTraceInFastThrow -Djdk.attach.allowAttachSelf=true -Dkotlinx.coroutines.debug=off -Djdk.module.illegalAccess.silent=true -Dawt.useSystemAAFontSettings=lcd -Dsun.java2d.renderer=sun.java2d.marlin.MarlinRenderingEngine -Dsun.tools.attach.tmp.only=true -XX:ErrorFile=/home/printuser0/java_error_in_RIDER_%p.log -XX:HeapDumpPath=/home/printuser0/java_error_in_RIDER.hprof -Didea.paths.selector=Rider2019.3 -Djb.vmOptionsFile=/home/printuser0/Apps/JetBrains Rider-2019.1.1/bin/rider64.vmoptions -Didea.platform.prefix=Rider -Dide.native.launcher=true -Didea.class.before.app=com.jetbrains.rider.protocol.EarlyBackendStarter -Didea.log.config.file=log.xml -Didea.jre.check=true
2020-01-10 00:27:34,653 | INFO | Main | charsets: JNU=UTF-8 file=UTF-8
2020-01-10 00:27:34,780 | INFO | RiderEnvironment | %RESHARPER_HOST_BIN% is not set
2020-01-10 00:27:34,781 | INFO | RiderEnvironment | JetBrains.ReSharper.Host.exe found at /home/printuser0/Apps/JetBrains Rider-2019.1.1/lib/ReSharperHost/JetBrains.ReSharper.Host.exe (bundled to IDEA)
2020-01-10 00:27:34,783 | INFO | RiderEnvironment | %RESHARPER_HOST_BIN% is not set
2020-01-10 00:27:34,783 | INFO | RiderEnvironment | runtime.sh found at /home/printuser0/Apps/JetBrains Rider-2019.1.1/lib/ReSharperHost/runtime.sh (bundled to IDEA)
2020-01-10 00:27:34,827 | INFO | JnaLoader | JNA library (64-bit) loaded in 37 ms
2020-01-10 00:27:34,882 | INFO | ReSharperProcess | Start /home/printuser0/Apps/JetBrains Rider-2019.1.1/lib/ReSharperHost/runtime.sh /home/printuser0/Apps/JetBrains Rider-2019.1.1/lib/ReSharperHost/JetBrains.ReSharper.Host.exe --Port=34349
2020-01-10 00:27:34,906 | DEBUG | EarlyReSharperProcess | <Measured> "StartTime" time=2688ms​‌​
2020-01-10 00:27:35,779 | INFO | PluginManager | Plugin "Docker" misses optional descriptor javaee-specific.xml
2020-01-10 00:27:35,781 | INFO | PluginManager | Plugin "Docker" misses optional descriptor java-specific.xml
2020-01-10 00:27:35,817 | INFO | PluginManager | Plugin "JavaScript and TypeScript" misses optional descriptor js-nashorn-support.xml
2020-01-10 00:27:36,268 | INFO | ApplicationLoader | CPU cores: 16; ForkJoinPool.commonPool: java.util.concurrent.ForkJoinPool@28aeb09[Running, parallelism = 15, size = 0, active = 0, running = 0, steals = 0, tasks = 0, submissions = 0]; factory: com.intellij.concurrency.IdeaForkJoinWorkerThreadFactory@6a68594e
2020-01-10 00:27:36,348 | INFO | ApplicationLoader | WM detected: Xfwm4
2020-01-10 00:27:36,508 | INFO | PluginManager | Plugin "Docker" misses optional descriptor javaee-specific.xml
2020-01-10 00:27:36,510 | INFO | PluginManager | Plugin "Docker" misses optional descriptor java-specific.xml
2020-01-10 00:27:36,530 | INFO | PluginManager | Plugin "JavaScript and TypeScript" misses optional descriptor js-nashorn-support.xml
2020-01-10 00:27:36,646 | INFO | PluginManager | Loaded bundled plugins: Angular and AngularJS (193.5662.14), CSS (193.5662.14), CVS (193.5662.14), ChangeReminder (193.5662.14), CoffeeScript (193.5662.14), Cucumber.js (193.5662.14), DPA (193.5662.14), Database Tools and SQL (193.5662.14), Docker (193.5662.14), EditorConfig (193.5662.14), F# Support (2019.3.181), FTP/SFTP Connectivity (ex. Remote Hosts Access) (193.5662.14), File Watchers (193.5662.14), ForTea (2019.3), Gherkin (193.5662.14), Git (193.5662.14), GitHub (193.5662.14), HTML Tools (193.5662.14), HTTP Client (193.5662.14), Handlebars/Mustache (193.5662.14), IDE Settings Sync (193.5662.14), IDEA CORE (193.5662.14), IntelliLang (193.5662.14), JavaScript Debugger (193.5662.14), JavaScript Intention Power Pack (193.5662.14), JavaScript and TypeScript (193.5662.14), Karma (193.5662.14), Less (193.5662.14), Live Edit (193.5662.14), Machine Learning Code Completion (193.5662.14), Mercurial (193.5662.14), Node.js Remote Interpreter (193.5662.14), NodeJS (193.5662.14), Perforce (193.5662.14), Performance Testing (193.5662.14), Polymer & Web Components (193.5662.14), Properties (193.5662.14), Pug (ex-Jade) (193.5662.14), Refactor-X (193.5662.14), Rider Plugins Appender (193.5662.14), SSH Remote Run (193.5662.14), Sass (193.5662.14), Settings Repository (193.5662.14), Spy-js (193.5662.14), Stylus (193.5662.14), Subversion (193.5662.14), Support for ASP.NET and Razor (193.5662.14), Support for publishing to custom servers (193.5662.14), Task Management (193.5662.14), Terminal (193.5662.14), TextMate bundles (193.5662.14), Time Tracking (193.5662.14), UML (193.5662.14), Unity Support (2019.3.0.162), Vagrant (193.5662.14), Vue.js (193.5662.14), W3C Validators (193.5662.14), XPathView + XSLT (193.5662.14), XSLT Debugger (193.5662.14), YAML (193.5662.14), Yeoman (193.5662.14), dotCommon (193.5662.14), tslint (193.5662.14)
2020-01-10 00:27:36,646 | INFO | PluginManager | Loaded custom plugins: Azure DevOps (1.158.0)
2020-01-10 00:27:36,647 | INFO | PluginManager | Disabled plugins: dotCover (193.5662.14), dotTrace (193.5662.14)
2020-01-10 00:27:36,803 | INFO | RiderApplicationLoadListener | Removing logs older than 3 days from /home/printuser0/.Rider2019.3/system/log
2020-01-10 00:27:36,808 | INFO | RiderApplicationLoadListener | File /etc/lsb-release:
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=19.10
DISTRIB_CODENAME=eoan
DISTRIB_DESCRIPTION="Ubuntu 19.10"
2020-01-10 00:27:36,809 | INFO | RiderApplicationLoadListener | File /etc/os-release:
NAME="Ubuntu"
VERSION="19.10 (Eoan Ermine)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 19.10"
VERSION_ID="19.10"
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
VERSION_CODENAME=eoan
UBUNTU_CODENAME=eoan
2020-01-10 00:27:36,813 | INFO | RiderApplicationLoadListener | Log cleaning complete, removed 0 directories / 0 files
2020-01-10 00:27:36,817 | INFO | uname -a | uname -a: Linux printServer0 5.3.0-26-generic #28-Ubuntu SMP Wed Dec 18 05:37:46 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
2020-01-10 00:27:36,819 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1
2020-01-10 00:27:36,820 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/webDeployment
2020-01-10 00:27:36,820 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/fileWatcher
2020-01-10 00:27:36,820 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/CSS
2020-01-10 00:27:36,820 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/stats-collector
2020-01-10 00:27:36,820 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/xpath
2020-01-10 00:27:36,821 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/IntelliLang
2020-01-10 00:27:36,821 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/properties
2020-01-10 00:27:36,821 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/uml
2020-01-10 00:27:36,822 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/terminal
2020-01-10 00:27:36,822 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/JavaScriptLanguage
2020-01-10 00:27:36,822 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/tslint
2020-01-10 00:27:36,822 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/AngularJS
2020-01-10 00:27:36,823 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/cvsIntegration
2020-01-10 00:27:36,823 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/yaml
2020-01-10 00:27:36,823 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/Docker
2020-01-10 00:27:36,823 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/git4idea
2020-01-10 00:27:36,823 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/htmltools
2020-01-10 00:27:36,824 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/JSIntentionPowerPack
2020-01-10 00:27:36,824 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/JavaScriptDebugger
2020-01-10 00:27:36,824 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/js-karma
2020-01-10 00:27:36,824 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/NodeJS
2020-01-10 00:27:36,825 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/PerforceIntegration
2020-01-10 00:27:36,825 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/RefactorX
2020-01-10 00:27:36,825 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/svn4idea
2020-01-10 00:27:36,825 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/w3validators
2020-01-10 00:27:36,825 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/xslt-debugger
2020-01-10 00:27:36,825 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/handlebars
2020-01-10 00:27:36,826 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/cloud-config
2020-01-10 00:27:36,826 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/DatabaseTools
2020-01-10 00:27:36,826 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/sass
2020-01-10 00:27:36,826 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/less
2020-01-10 00:27:36,827 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/stylus
2020-01-10 00:27:36,827 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/LiveEdit
2020-01-10 00:27:36,827 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/WebComponents
2020-01-10 00:27:36,827 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/restClient
2020-01-10 00:27:36,828 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/editorconfig
2020-01-10 00:27:36,828 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/rider-plugins-appender
2020-01-10 00:27:36,828 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/rider-unity
2020-01-10 00:27:36,828 | INFO | ReSharperProcess | * adding directory with ad-hoc DLLs for a simplified ReSharperHost plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/rider-unity/dotnet.
2020-01-10 00:27:36,828 | INFO | ReSharperProcess | * adding directory with DLLs for a debugger plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/rider-unity/dotnetDebuggerWorker.
2020-01-10 00:27:36,828 | INFO | ReSharperProcess | * adding project templates directory: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/rider-unity/projectTemplates
2020-01-10 00:27:36,829 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/tasks
2020-01-10 00:27:36,829 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/tasks-time-tracking
2020-01-10 00:27:36,829 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/vcs-changeReminder
2020-01-10 00:27:36,829 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/dotCommon
2020-01-10 00:27:36,829 | INFO | ReSharperProcess | * adding directory with expanded DLLs for a set of full ReSharperHost plugins: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/dotCommon/DotFiles.
2020-01-10 00:27:36,829 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/dotCover
2020-01-10 00:27:36,830 | INFO | ReSharperProcess | - /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/dotCover is disabled, skipping
2020-01-10 00:27:36,830 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/dotTrace
2020-01-10 00:27:36,830 | INFO | ReSharperProcess | - /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/dotTrace is disabled, skipping
2020-01-10 00:27:36,830 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/dpa
2020-01-10 00:27:36,830 | INFO | ReSharperProcess | * adding directory with expanded DLLs for a set of full ReSharperHost plugins: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/dpa/DotFiles.
2020-01-10 00:27:36,830 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/performanceTesting
2020-01-10 00:27:36,831 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/Jade
2020-01-10 00:27:36,831 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/Yeoman
2020-01-10 00:27:36,831 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/rider-fsharp
2020-01-10 00:27:36,831 | INFO | ReSharperProcess | * adding directory with ad-hoc DLLs for a simplified ReSharperHost plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/rider-fsharp/dotnet.
2020-01-10 00:27:36,831 | INFO | ReSharperProcess | * adding project templates directory: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/rider-fsharp/projectTemplates
2020-01-10 00:27:36,831 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/rider-publish-custom-server
2020-01-10 00:27:36,832 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/rider-razor
2020-01-10 00:27:36,832 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/.Rider2019.3/config/plugins/com.microsoft.vso.idea
2020-01-10 00:27:36,832 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/gherkin
2020-01-10 00:27:36,832 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/CucumberJavaScript
2020-01-10 00:27:36,832 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/hg4idea
2020-01-10 00:27:36,833 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/coffeescript-core
2020-01-10 00:27:36,833 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/ForTea
2020-01-10 00:27:36,833 | INFO | ReSharperProcess | * adding directory with ad-hoc DLLs for a simplified ReSharperHost plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/ForTea/dotnet.
2020-01-10 00:27:36,833 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/github
2020-01-10 00:27:36,833 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/remote-run
2020-01-10 00:27:36,833 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/node-remote-interpreter
2020-01-10 00:27:36,834 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/textmate
2020-01-10 00:27:36,834 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/vagrant
2020-01-10 00:27:36,834 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/vuejs
2020-01-10 00:27:36,834 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/settings-repository
2020-01-10 00:27:36,834 | INFO | ReSharperProcess | Idea Plugin: /home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/spy-js
2020-01-10 00:27:36,887 | INFO | ReSharperProcess | Additional packages: <Packages><Folder Path="/home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/dotCommon/DotFiles"></Folder><Folder Path="/home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/dpa/DotFiles"></Folder><AdHocMetadata BaseDir="/home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/ForTea/dotnet" Version="2019.3" BuiltOn="2020-01-09T22:56:24.911Z" CompanyNameHuman="org.jetbrains" SubplatformName="fortea"><PackageFile RelativePath="ForTea.Core.dll" AssemblyName="*"></PackageFile><PackageFile RelativePath="ForTea.RiderPlugin.dll" AssemblyName="*"></PackageFile></AdHocMetadata><AdHocMetadata BaseDir="/home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/rider-fsharp/dotnet" Version="2019.3.181" BuiltOn="2020-01-09T22:56:14.890Z" CompanyNameHuman="com.jetbrains.rider" SubplatformName="fsharp"><PackageFile RelativePath="FSharp.Compiler.Interactive.Settings.dll" AssemblyName="*"></PackageFile><PackageFile RelativePath="FSharp.Compiler.Service.dll" AssemblyName="*"></PackageFile><PackageFile RelativePath="FSharp.Core.dll" AssemblyName="*"></PackageFile><PackageFile RelativePath="FSharp.Core.xml"></PackageFile><PackageFile RelativePath="Fantomas.dll" AssemblyName="*"></PackageFile><PackageFile RelativePath="JetBrains.ReSharper.Plugins.FSharp.Common.dll" AssemblyName="*"></PackageFile><PackageFile RelativePath="JetBrains.ReSharper.Plugins.FSharp.Daemon.Cs.dll" AssemblyName="*"></PackageFile><PackageFile RelativePath="JetBrains.ReSharper.Plugins.FSharp.ProjectModelBase.dll" AssemblyName="*"></PackageFile><PackageFile RelativePath="JetBrains.ReSharper.Plugins.FSharp.Psi.Features.dll" AssemblyName="*"></PackageFile><PackageFile RelativePath="JetBrains.ReSharper.Plugins.FSharp.Psi.dll" AssemblyName="*"></PackageFile><PackageFile RelativePath="JetBrains.ReSharper.Plugins.FSharp.Services.Cs.dll" AssemblyName="*"></PackageFile></AdHocMetadata><AdHocMetadata BaseDir="/home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/rider-unity/dotnet" Version="2019.3.0.162" BuiltOn="2020-01-09T22:56:14.378Z" CompanyNameHuman="com.intellij.resharper" SubplatformName="unity"><PackageFile RelativePath="Extensions/com.intellij.resharper.unity/annotations/UnityEditor.EditorTestsRunner.xml"></PackageFile><PackageFile RelativePath="Extensions/com.intellij.resharper.unity/annotations/UnityEditor.xml"></PackageFile><PackageFile RelativePath="Extensions/com.intellij.resharper.unity/annotations/UnityEngine.AnimationModule.xml"></PackageFile><PackageFile RelativePath="Extensions/com.intellij.resharper.unity/annotations/UnityEngine.CoreModule.xml"></PackageFile><PackageFile RelativePath="Extensions/com.intellij.resharper.unity/annotations/UnityEngine.Networking.xml"></PackageFile><PackageFile RelativePath="Extensions/com.intellij.resharper.unity/annotations/UnityEngine.PhysicsModule.xml"></PackageFile><PackageFile RelativePath="Extensions/com.intellij.resharper.unity/annotations/UnityEngine.xml"></PackageFile><PackageFile RelativePath="JetBrains.ReSharper.Plugins.Unity.dll" AssemblyName="*"></PackageFile><PackageFile RelativePath="JetBrains.ReSharper.Plugins.Yaml.dll" AssemblyName="*"></PackageFile></AdHocMetadata></Packages>
2020-01-10 00:27:36,956 | INFO | ProtocolManager | Using early-started protocol and process
2020-01-10 00:27:36,957 | INFO | ProtocolManager | Create protocol host...
2020-01-10 00:27:36,996 | INFO | CloudConfigManager | === Exit: JBA_NOT_FOUND ===
2020-01-10 00:27:37,121 | INFO | PagedFileStorage | lower=100; upper=500; buffer=10; max=1430
2020-01-10 00:27:37,134 | INFO | RiderApplicationLoadListener | [STDOUT] Debug | Server | 27:EarlyStartServerWire | EarlyStartServerWire : connected
2020-01-10 00:27:37,139 | INFO | RiderApplicationLoadListener | [STDOUT] Debug | ByteBufferAsyncProcessor | 27:EarlyStartServerWire | RESUME :: {id = EarlyStartServerWire/Sender, state = 'AsyncProcessing'}
2020-01-10 00:27:37,191 | INFO | RegistryState | Registry values changed by user: actionSystem.fix.alt.gr = false, ide.borderless.title.classpath = false, ide.borderless.title.product = false, ide.borderless.title.project.path = false, ide.require.transaction.for.model.changes = false, ide.svg.icon = true, ide.tooltip.initialDelay = 0, ide.tooltip.initialDelay.highlighter = 0, ide.tree.horizontal.default.autoscrolling = false, ide.win.file.chooser.native = true, ide.win.frame.decoration = true, parameter.info.max.visible.rows = 10, performance.watcher.sampling.interval.ms = 200, performance.watcher.unresponsive.interval.ms = 1000, search.everywhere.pattern.checking = false, search.everywhere.settings = true, show.diff.preview.as.editor.tab = true, vcs.non.modal.commit.toggle.ui = false
2020-01-10 00:27:37,218 | INFO | CertificateManager | Default SSL context initialized
2020-01-10 00:27:37,231 | INFO | RegistryState | Experimental features enabled for user: wsl.p9.support, wsl.p9.show.roots.in.file.chooser, inline.browse.button, linux.native.menu, recent.and.edited.files.together, show.create.new.element.in.popup, copy.reference.popup, new.large.text.file.viewer
2020-01-10 00:27:37,271 | INFO | UISettings | Loaded: fontSize=12, fontScale=1.0; restored: fontSize=12, fontScale=1.0
2020-01-10 00:27:37,275 | INFO | UISettings | Loaded: fontSize=16, fontScale=1.0; restored: fontSize=16, fontScale=1.0
2020-01-10 00:27:37,278 | INFO | NativeFileWatcherImpl | Starting file watcher: /home/printuser0/Apps/JetBrains Rider-2019.1.1/bin/fsnotifier64
2020-01-10 00:27:37,282 | INFO | NativeFileWatcherImpl | Native file watcher is operational.
2020-01-10 00:27:37,379 | INFO | UISettings | Loaded: fontSize=12, fontScale=1.0; restored: fontSize=12, fontScale=1.0
2020-01-10 00:27:37,394 | INFO | UISettings | Loaded: fontSize=12, fontScale=1.0; restored: fontSize=12, fontScale=1.0
2020-01-10 00:27:37,396 | INFO | UISettings | Loaded: fontSize=12, fontScale=1.0; restored: fontSize=12, fontScale=1.0
2020-01-10 00:27:37,399 | INFO | UISettings | Loaded: fontSize=12, fontScale=1.0; restored: fontSize=12, fontScale=1.0
2020-01-10 00:27:37,438 | INFO | BuiltInServerManager | built-in server started, port 63342
2020-01-10 00:27:37,440 | WARN | ComponentStoreImpl | Duplicated scheme Rider Dark - old: Rider Dark, new Rider Dark
2020-01-10 00:27:37,450 | WARN | ComponentStoreImpl | Duplicated scheme Rider Light - old: Rider Light, new Rider Light
2020-01-10 00:27:37,463 | WARN | EditorColorsManagerImpl | Cannot find scheme: VibrantInk from plugin: com.intellij.database
2020-01-10 00:27:37,466 | WARN | EditorColorsManagerImpl | Cannot find scheme: WarmNeon from plugin: com.intellij.database
2020-01-10 00:27:37,478 | INFO | UISettings | Loaded: fontSize=16, fontScale=1.0; restored: fontSize=16, fontScale=1.0
2020-01-10 00:27:37,479 | INFO | UISettings | Loaded: fontSize=16, fontScale=1.0; restored: fontSize=16, fontScale=1.0
2020-01-10 00:27:37,479 | INFO | UISettings | Loaded: fontSize=16, fontScale=1.0; restored: fontSize=16, fontScale=1.0
2020-01-10 00:27:37,479 | INFO | UISettings | Loaded: fontSize=10, fontScale=1.0; restored: fontSize=10, fontScale=1.0
2020-01-10 00:27:37,501 | INFO | UpdateCheckerComponent | channel: release
2020-01-10 00:27:37,550 | INFO | ProtocolManagerInitializer | Initialize protocol manager...
2020-01-10 00:27:37,551 | INFO | ProtocolManager | Initialize protocol manager
2020-01-10 00:27:37,551 | INFO | ProtocolManager | Initialize 1 hosts
2020-01-10 00:27:37,561 | INFO | ProtocolHost | Initialize protocol host ReSharper Process 0 with 16 components
2020-01-10 00:27:38,072 | INFO | FileBasedIndexImpl$FileIndexDataInitialization | Initialization done: 926
2020-01-10 00:27:38,158 | INFO | StubIndexImpl$StubIndexInitialization | Initialization done: 86
2020-01-10 00:27:39,227 | INFO | RegistryValue | Registry value 'rider.enable.designer.winForms' has changed to 'false'
2020-01-10 00:27:39,282 | INFO | RiderInitialConfigurator | Staring initial configuration...
2020-01-10 00:27:39,302 | INFO | RegistryValue | Registry value 'ide.require.transaction.for.model.changes' has changed to 'false'
2020-01-10 00:27:39,302 | INFO | RegistryValue | Registry value 'search.everywhere.pattern.checking' has changed to 'false'
2020-01-10 00:27:39,302 | INFO | RegistryValue | Registry value 'actionSystem.fix.alt.gr' has changed to 'false'
2020-01-10 00:27:39,302 | INFO | RegistryValue | Registry value 'parameter.info.max.visible.rows' has changed to '10'
2020-01-10 00:27:39,302 | INFO | RegistryValue | Registry value 'performance.watcher.sampling.interval.ms' has changed to '200'
2020-01-10 00:27:39,303 | INFO | RegistryValue | Registry value 'performance.watcher.unresponsive.interval.ms' has changed to '1000'
2020-01-10 00:27:39,303 | INFO | RegistryValue | Registry value 'ide.svg.icon' has changed to 'true'
2020-01-10 00:27:39,303 | INFO | RegistryValue | Registry value 'ide.win.frame.decoration' has changed to 'true'
2020-01-10 00:27:39,383 | WARN | ExtensionPointImpl | Extension to be removed not found: TODO
2020-01-10 00:27:39,401 | INFO | ReSharperProcess | Additional packages: <Packages><Folder Path="/home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/dotCommon/DotFiles"></Folder><Folder Path="/home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/dpa/DotFiles"></Folder><AdHocMetadata BaseDir="/home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/ForTea/dotnet" Version="2019.3" BuiltOn="2020-01-09T22:56:24.911Z" CompanyNameHuman="org.jetbrains" SubplatformName="fortea"><PackageFile RelativePath="ForTea.Core.dll" AssemblyName="*"></PackageFile><PackageFile RelativePath="ForTea.RiderPlugin.dll" AssemblyName="*"></PackageFile></AdHocMetadata><AdHocMetadata BaseDir="/home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/rider-fsharp/dotnet" Version="2019.3.181" BuiltOn="2020-01-09T22:56:14.890Z" CompanyNameHuman="com.jetbrains.rider" SubplatformName="fsharp"><PackageFile RelativePath="FSharp.Compiler.Interactive.Settings.dll" AssemblyName="*"></PackageFile><PackageFile RelativePath="FSharp.Compiler.Service.dll" AssemblyName="*"></PackageFile><PackageFile RelativePath="FSharp.Core.dll" AssemblyName="*"></PackageFile><PackageFile RelativePath="FSharp.Core.xml"></PackageFile><PackageFile RelativePath="Fantomas.dll" AssemblyName="*"></PackageFile><PackageFile RelativePath="JetBrains.ReSharper.Plugins.FSharp.Common.dll" AssemblyName="*"></PackageFile><PackageFile RelativePath="JetBrains.ReSharper.Plugins.FSharp.Daemon.Cs.dll" AssemblyName="*"></PackageFile><PackageFile RelativePath="JetBrains.ReSharper.Plugins.FSharp.ProjectModelBase.dll" AssemblyName="*"></PackageFile><PackageFile RelativePath="JetBrains.ReSharper.Plugins.FSharp.Psi.Features.dll" AssemblyName="*"></PackageFile><PackageFile RelativePath="JetBrains.ReSharper.Plugins.FSharp.Psi.dll" AssemblyName="*"></PackageFile><PackageFile RelativePath="JetBrains.ReSharper.Plugins.FSharp.Services.Cs.dll" AssemblyName="*"></PackageFile></AdHocMetadata><AdHocMetadata BaseDir="/home/printuser0/Apps/JetBrains Rider-2019.1.1/plugins/rider-unity/dotnet" Version="2019.3.0.162" BuiltOn="2020-01-09T22:56:14.378Z" CompanyNameHuman="com.intellij.resharper" SubplatformName="unity"><PackageFile RelativePath="Extensions/com.intellij.resharper.unity/annotations/UnityEditor.EditorTestsRunner.xml"></PackageFile><PackageFile RelativePath="Extensions/com.intellij.resharper.unity/annotations/UnityEditor.xml"></PackageFile><PackageFile RelativePath="Extensions/com.intellij.resharper.unity/annotations/UnityEngine.AnimationModule.xml"></PackageFile><PackageFile RelativePath="Extensions/com.intellij.resharper.unity/annotations/UnityEngine.CoreModule.xml"></PackageFile><PackageFile RelativePath="Extensions/com.intellij.resharper.unity/annotations/UnityEngine.Networking.xml"></PackageFile><PackageFile RelativePath="Extensions/com.intellij.resharper.unity/annotations/UnityEngine.PhysicsModule.xml"></PackageFile><PackageFile RelativePath="Extensions/com.intellij.resharper.unity/annotations/UnityEngine.xml"></PackageFile><PackageFile RelativePath="JetBrains.ReSharper.Plugins.Unity.dll" AssemblyName="*"></PackageFile><PackageFile RelativePath="JetBrains.ReSharper.Plugins.Yaml.dll" AssemblyName="*"></PackageFile></AdHocMetadata></Packages>
2020-01-10 00:27:39,430 | INFO | ServerEventManager | ServerEventManager created
2020-01-10 00:27:39,431 | INFO | ServerEventManager | listener added
2020-01-10 00:27:39,431 | INFO | ProjectRepoEventManager | ProjectRepoEventManager created
2020-01-10 00:27:39,441 | INFO | ServerPollingManager | ServerPollingManager created
2020-01-10 00:27:39,442 | INFO | ServerPollingManager | Polling started
2020-01-10 00:27:40,762 | WARN | PerformanceWatcher | UI freezed for 1245ms, details saved to /home/printuser0/.Rider2019.3/system/log/threadDumps-freeze-20200110-002739-RD-193.5662.14-IdeMessagePanel.<clinit>-1sec
2020-01-10 00:27:43,425 | INFO | SystemHealthMonitor | restored ignored PIPE handler
2020-01-10 00:32:31,757 | INFO | ComponentStoreImpl | Saving appFileTypeManager took 16 ms
2020-01-10 00:32:39,445 | INFO | ServerPollingManager | Timer fired
2020-01-10 00:32:39,445 | INFO | ServerEventManager | triggering ALL events
2020-01-10 00:32:39,446 | INFO | ServerEventManager | triggering event: BUILDS_CHANGED
2020-01-10 00:32:39,449 | INFO | ServerEventManager | triggering event: PULL_REQUESTS_CHANGED
2020-01-10 00:32:39,449 | INFO | ServerEventManager | triggering event: WORK_ITEMS_CHANGED
2020-01-10 00:32:54,101 | INFO | ProtocolManager | GetOrCreate protocolHost...
2020-01-10 00:32:54,116 | INFO | SolutionHost | Putting protocol solution...
2020-01-10 00:32:54,391 | INFO | ProjectCodeStyleSettingsManager | Initialized from default code style settings.
2020-01-10 00:32:54,885 | DEBUG | SolutionLifecycleHost | SolutionLifecycleHost is being created...
2020-01-10 00:32:55,639 | WARN | PerformanceWatcher | UI freezed for 1554ms, details saved to /home/printuser0/.Rider2019.3/system/log/threadDumps-freeze-20200110-003254-RD-193.5662.14-PersistentFSImpl.getId-1sec
2020-01-10 00:32:55,652 | INFO | ServerEventManager | triggering ALL events
2020-01-10 00:32:55,652 | INFO | ServerEventManager | triggering event: BUILDS_CHANGED
2020-01-10 00:32:55,654 | INFO | ServerEventManager | triggering event: PULL_REQUESTS_CHANGED
2020-01-10 00:32:55,654 | INFO | ServerEventManager | triggering event: WORK_ITEMS_CHANGED
2020-01-10 00:32:55,656 | INFO | IdeStartupScripts | 0 startup script(s) found
2020-01-10 00:32:56,059 | INFO | GlobalMenuLinux | Closed dbus-service 'com.canonical.AppMenu.Registrar'
2020-01-10 00:32:56,089 | INFO | GlobalMenuLinux | frame peer is null, wait for connection
2020-01-10 00:32:56,373 | INFO | GlobalMenuLinux | created instance of GlobalMenuLinux for xid=0x3e000a1
2020-01-10 00:32:56,729 | DEBUG | RiderContentModelUpdater | Module file = '/home/printuser0/Projects/RiderCrashTest/RiderHangTest/.idea/.idea.RiderHangTest/riderModule.iml' [Exists = true]
2020-01-10 00:32:56,729 | DEBUG | RiderContentModelUpdater | Existing module = Module: 'riderModule'
2020-01-10 00:32:56,730 | DEBUG | RiderContentModelUpdater | Modules:
2020-01-10 00:32:56,730 | DEBUG | RiderContentModelUpdater | -> riderModule
2020-01-10 00:32:56,732 | DEBUG | RiderContentModelUpdater | file:///home/printuser0/Projects/RiderCrashTest/RiderHangTest
2020-01-10 00:32:56,732 | DEBUG | RiderContentModelUpdater | Initial context model was built
2020-01-10 00:32:56,743 | INFO | PerformancePlugin | Performance Plugin is in silent mode
2020-01-10 00:32:56,744 | WARN | PerformanceWatcher | UI freezed for 1100ms, details saved to /home/printuser0/.Rider2019.3/system/log/threadDumps-freeze-20200110-003255-RD-193.5662.14-Collections$3.hasMoreElements-1sec
2020-01-10 00:32:58,246 | INFO | FrontendDocumentHost | Subscribing for document changes. DocumentImpl[file:///home/printuser0/Projects/RiderCrashTest/RiderHangTest/RiderHangTest/Program.cs]
2020-01-10 00:32:58,372 | INFO | FrontendTextControlHost | Adding textControl to the model. File: /home/printuser0/Projects/RiderCrashTest/RiderHangTest/RiderHangTest/Program.cs. Caret offset: DocOffsetAndVirtualModel(offset=0, virtualDelta=0). Selection: (active: (0, 0) - anchor: (0, 0))
2020-01-10 00:32:58,765 | INFO | SqlDialects | SQL dialects initialized in 17 ms
2020-01-10 00:32:58,802 | INFO | RiderFileBreadcrumbsCollector | backend breadcrumbs support handles file = true
2020-01-10 00:32:58,810 | INFO | RiderFileBreadcrumbsCollector | backend breadcrumbs support handles file = true
2020-01-10 00:32:59,206 | WARN | ToolWindowImpl | ToolWindow icons should be 13x13. Please fix ToolWindow (ID: Commit) or icon jar:file:/home/printuser0/Apps/JetBrains%20Rider-2019.1.1/lib/icons.jar!/vcs/commitNode.svg
2020-01-10 00:32:59,359 | INFO | PerformanceWatcher | Pushing properties took 652ms; general responsiveness: 1/5 sluggish, 3/5 very slow; EDT responsiveness: ok
2020-01-10 00:32:59,382 | INFO | RiderFileBreadcrumbsCollector | backend breadcrumbs support handles file = true
2020-01-10 00:32:59,747 | INFO | PerformanceWatcher | Post-startup activities under progress took 2992ms; general responsiveness: 3/15 sluggish, 9/15 very slow; EDT responsiveness: 1/4 sluggish, 3/4 very slow
2020-01-10 00:32:59,981 | DEBUG | PackageManager | Refreshing packages manager
2020-01-10 00:33:00,061 | INFO | PerformanceWatcher | Indexable file iteration took 700ms; general responsiveness: ok; EDT responsiveness: 1/1 sluggish
2020-01-10 00:33:00,068 | INFO | UnindexedFilesUpdater | Unindexed files update started: 1 files to update
2020-01-10 00:33:00,438 | INFO | RegistryValue | Registry value 'rider.enable.designer.winForms' has changed to 'true'
2020-01-10 00:33:00,438 | INFO | PerformanceWatcher | Unindexed files update took 370ms; general responsiveness: 1/5 sluggish, 3/5 very slow; EDT responsiveness: ok
2020-01-10 00:33:00,442 | INFO | RiderDotNetActiveRuntimeHost | Update active runtime: RdActiveRuntime(monoExePath=/usr/bin/mono, dotNetCliExePath=/usr/share/dotnet/dotnet, dotNetCoreSdkList=[2.2.402, 2.2.106])
2020-01-10 00:33:00,821 | INFO | StartupManagerImpl | /home/printuser0/Projects/RiderCrashTest/RiderHangTest/.idea/.idea.RiderHangTest/.idea case-sensitivity: expected=true actual=true
2020-01-10 00:33:00,888 | DEBUG | RiderTransactionsHost | >>> Start transaction committing...
2020-01-10 00:33:00,891 | DEBUG | RiderTransactionsHost | <<< End transaction committing...
2020-01-10 00:33:00,946 | INFO | CloudConfigManager | === StatusBar ignored ===
2020-01-10 00:33:01,362 | INFO | FileEditorManagerImpl | Project opening took 7262 ms
2020-01-10 00:33:01,371 | INFO | SolutionLifecycleHost | Got SolutionBuilder is ready signal from backend
2020-01-10 00:33:01,605 | INFO | RiderFileBreadcrumbsCollector | start computing crumbs for the file file:///home/printuser0/Projects/RiderCrashTest/RiderHangTest/RiderHangTest/Program.cs and offset 0
2020-01-10 00:33:02,041 | INFO | ComponentStoreImpl | Saving Project (name=RiderHangTest, containerState=ACTIVE, componentStore=/home/printuser0/Projects/RiderCrashTest/RiderHangTest) com.intellij.coverage.CoverageDataManagerImpl took 115 ms
2020-01-10 00:33:02,176 | INFO | StoreUtil | saveProjectsAndApp took 1395 ms
2020-01-10 00:33:03,087 | INFO | FrontendTextControlHost | Closing (/home/printuser0/Projects/RiderCrashTest/RiderHangTest/RiderHangTest/Program.cs, 1, EditorTab) ...
2020-01-10 00:33:03,094 | INFO | FrontendDocumentHost | Unbinding document EditableEntityModelId (projectModelElementId = 0filePath = "/home/printuser0/Projects/RiderCrashTest/RiderHangTest/RiderHangTest/Program.cs")
2020-01-10 00:33:03,097 | INFO | FrontendDocumentHost | Subscribing for document changes. DocumentImpl[file:///home/printuser0/Projects/RiderCrashTest/RiderHangTest/RiderHangTest/Program.cs]
2020-01-10 00:33:03,099 | INFO | FrontendTextControlHost | Adding textControl to the model. File: /home/printuser0/Projects/RiderCrashTest/RiderHangTest/RiderHangTest/Program.cs. Caret offset: DocOffsetAndVirtualModel(offset=0, virtualDelta=0). Selection: (active: (0, 0) - anchor: (0, 0))
2020-01-10 00:33:03,694 | DEBUG | ProjectModelViewHost | Synced
2020-01-10 00:33:03,706 | DEBUG | ProjectModelViewTransactions | Ready
2020-01-10 00:33:04,324 | INFO | ProjectRootManagerComponent | project roots have changed
2020-01-10 00:33:04,327 | DEBUG | RiderContentModelUpdater | 00:33:04:327 Content model was updated for 18 ms, details:
Build new content model for 2 ms 11%
Add existing libraries for 0 ms 0%
Content model was NOT changed, update index instead of commit for 13 ms 72%
2020-01-10 00:33:04,396 | INFO | PerformanceWatcher | Pushing properties took 9ms; general responsiveness: ok; EDT responsiveness: ok
2020-01-10 00:33:04,424 | INFO | PerformanceWatcher | Indexable file iteration took 27ms; general responsiveness: ok; EDT responsiveness: ok
2020-01-10 00:33:04,424 | INFO | UnindexedFilesUpdater | Unindexed files update started: 1 files to update
2020-01-10 00:33:04,558 | INFO | PerformanceWatcher | Unindexed files update took 133ms; general responsiveness: ok; EDT responsiveness: ok
2020-01-10 00:33:05,907 | INFO | RepositoryHelper | using cached plugin list (updated at 09/01/2020, 22:54)
2020-01-10 00:33:06,357 | INFO | ExternalProjectsDataStorage | Load external projects data in 2 millis (read time: 2)
2020-01-10 00:33:06,838 | INFO | SolutionLifecycleHost | Full cold solution load with caches took 9605 milliseconds.
2020-01-10 00:33:07,054 | INFO | RiderFileBreadcrumbsCollector | start computing crumbs for the file file:///home/printuser0/Projects/RiderCrashTest/RiderHangTest/RiderHangTest/Program.cs and offset 0
2020-01-10 00:33:07,150 | INFO | PackageJsonUpdateNotifier | processPackageJsonFiles []
2020-01-10 00:33:07,331 | DEBUG | ContentModelStore | 00:33:07:331 Finish updating state for 2 ms, details:
ContentModelStore.CalculateState for 2 ms 100%
2020-01-10 00:33:34,076 | INFO | DotNetProjectExecutorFactory | project kind is DotNetCore
2020-01-10 00:33:34,081 | INFO | DotNetProjectExecutorFactory | Configuration will be executed on com.jetbrains.rider.runtime.dotNetCore.DotNetCoreRuntime
2020-01-10 00:33:34,339 | INFO | BuildSessionView | new session
2020-01-10 00:33:34,489 | INFO | BuildHost | Build session started
2020-01-10 00:33:36,327 | INFO | BuildSessionView | result: BuildResult(kind=Successful, showNotification=true)
2020-01-10 00:33:36,330 | INFO | BuildToolWindowContext | Build result: Build succeeded - Build succeeded at 00:33:36
2020-01-10 00:33:36,331 | INFO | BuildHost | Build finished with result: BuildResult(kind=Successful, showNotification=true)
2020-01-10 00:33:36,529 | INFO | RiderEnvironment | %RESHARPER_HOST_BIN% is not set
2020-01-10 00:33:36,529 | INFO | RiderEnvironment | JetBrains.Debugger.Worker.exe found at /home/printuser0/Apps/JetBrains Rider-2019.1.1/lib/ReSharperHost/JetBrains.Debugger.Worker.exe (bundled to IDEA)
2020-01-10 00:33:36,529 | INFO | RiderEnvironment | %RESHARPER_HOST_BIN% is not set
2020-01-10 00:33:36,530 | INFO | RiderEnvironment | runtime.sh found at /home/printuser0/Apps/JetBrains Rider-2019.1.1/lib/ReSharperHost/runtime.sh (bundled to IDEA)
2020-01-10 00:33:38,560 | INFO | DotNetDebugProcess | Called activateSession
2020-01-10 00:33:40,375 | INFO | ComponentStoreImpl | Saving appXDebuggerSettings took 12 ms
2020-01-10 00:33:40,377 | ERROR | DebuggerWorkerProcessHandler | Exception in debugger process: Failed to resolve assembly Could not load the file 'Microsoft.CodeAnalysis.CSharp.resources'.
--- EXCEPTION #1/2 [FileNotFoundException]
Message = “Could not load the file 'Microsoft.CodeAnalysis.CSharp.resources'.”
ExceptionPath = Root.InnerException
ClassName = System.IO.FileNotFoundException
HResult = COR_E_FILENOTFOUND=E_FILENOTFOUND=WIN32_ERROR_FILE_NOT_FOUND=80070002
Source = mscorlib
FileNotFound_FileName = Microsoft.CodeAnalysis.CSharp.resources
StackTraceString = “
at System.AppDomain.Load (System.Reflection.AssemblyName assemblyRef, System.Security.Policy.Evidence assemblySecurity) [0x0007a] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at (wrapper remoting-invoke-with-check) System.AppDomain.Load(System.Reflection.AssemblyName,System.Security.Policy.Evidence)
at System.AppDomain.Load (System.Reflection.AssemblyName assemblyRef) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at (wrapper remoting-invoke-with-check) System.AppDomain.Load(System.Reflection.AssemblyName)
at System.Reflection.Assembly.Load (System.Reflection.AssemblyName assemblyRef) [0x00005] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at Mono.Debugging.BindingRedirects.DefaultBindingRedirectResolver.LoadAssembly (System.String assemblyName) [0x00006] in <f4e9806ba0a74c7b8387a0564f7391c6>:0
at Mono.Debugging.BindingRedirects.DefaultBindingRedirectResolver.TryResolve (System.ResolveEventArgs args) [0x00157] in <f4e9806ba0a74c7b8387a0564f7391c6>:0
at Mono.Debugging.BindingRedirects.DefaultBindingRedirectResolver.TryResolve (System.ResolveEventArgs args, System.Reflection.Assembly& assembly) [0x00000] in <f4e9806ba0a74c7b8387a0564f7391c6>:0
at Mono.Debugging.BindingRedirects.BindingRedirectManager.ResolveAssembly (System.Object sender, System.ResolveEventArgs args) [0x0001d] in <f4e9806ba0a74c7b8387a0564f7391c6>:0
--- Outer ---
--- EXCEPTION #2/2 [LoggerException]
Message = “Failed to resolve assembly Could not load the file 'Microsoft.CodeAnalysis.CSharp.resources'.”
ExceptionPath = Root
ClassName = JetBrains.Util.LoggerException
InnerException = “Exception #1 at Root.InnerException”
HResult = COR_E_APPLICATION=80131600
StackTraceString = “
at JetBrains.Util.ILoggerEx.LogException (JetBrains.Util.ILogger this, JetBrains.Diagnostics.LoggingLevel level, System.Exception exception, JetBrains.Util.ExceptionOrigin exceptionOrigin, System.String comment) [0x00000] in <218f6f2ee6094a33981cc1692b84877e>:0
at JetBrains.Util.ILoggerEx.Error (JetBrains.Util.ILogger this, System.Exception ex, System.String message) [0x00000] in <218f6f2ee6094a33981cc1692b84877e>:0
at Mono.Debugging.BindingRedirects.BindingRedirectManager.ResolveAssembly (System.Object sender, System.ResolveEventArgs args) [0x00000] in <f4e9806ba0a74c7b8387a0564f7391c6>:0
at System.AppDomain.DoAssemblyResolve (System.String name, System.Reflection.Assembly requestingAssembly, System.Boolean refonly) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.AppDomain.LoadAssembly (System.AppDomain , System.String , System.Security.Policy.Evidence , System.Boolean , System.Threading.StackCrawlMark& ) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.AppDomain.LoadSatellite (System.Reflection.AssemblyName assemblyRef, System.Boolean throwOnError, System.Threading.StackCrawlMark& stackMark) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Reflection.Assembly.InternalGetSatelliteAssembly (System.String name, System.Globalization.CultureInfo culture, System.Version version, System.Boolean throwOnFileNotFound, System.Threading.StackCrawlMark& stackMark) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Resources.ManifestBasedResourceGroveler.GetSatelliteAssembly (System.Globalization.CultureInfo lookForCulture, System.Threading.StackCrawlMark& stackMark) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Resources.ManifestBasedResourceGroveler.GrovelForResourceSet (System.Globalization.CultureInfo culture, System.Collections.Generic.Dictionary`2[TKey,TValue] localResourceSets, System.Boolean tryParents, System.Boolean createIfNotExists, System.Threading.StackCrawlMark& stackMark) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Resources.ResourceManager.InternalGetResourceSet (System.Globalization.CultureInfo requestedCulture, System.Boolean createIfNotExists, System.Boolean tryParents, System.Threading.StackCrawlMark& stackMark) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Resources.ResourceManager.InternalGetResourceSet (System.Globalization.CultureInfo culture, System.Boolean createIfNotExists, System.Boolean tryParents) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Resources.ResourceManager.GetString (System.String name, System.Globalization.CultureInfo culture) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at Microsoft.CodeAnalysis.CSharp.ErrorFacts.GetMessage (Microsoft.CodeAnalysis.CSharp.ErrorCode code, System.Globalization.CultureInfo culture) [0x00000] in <2c65d78f5f724b76bf0039ad582f29c4>:0
at Microsoft.CodeAnalysis.CSharp.MessageProvider.LoadMessage (System.Int32 code, System.Globalization.CultureInfo language) [0x00000] in <2c65d78f5f724b76bf0039ad582f29c4>:0
at Microsoft.CodeAnalysis.DiagnosticInfo.GetMessage (System.IFormatProvider formatProvider) [0x00000] in <51a5d2357a2346cf9f22833fc4af35ba>:0
at Microsoft.CodeAnalysis.DiagnosticWithInfo.GetMessage (System.IFormatProvider formatProvider) [0x00000] in <51a5d2357a2346cf9f22833fc4af35ba>:0
at Mono.Debugging.Utils.RoslynUtil+<>c.<WarmUpRoslyn>b__0_0 (Microsoft.CodeAnalysis.Diagnostic x) [0x00000] in <f4e9806ba0a74c7b8387a0564f7391c6>:0
at System.Linq.Enumerable+SelectArrayIterator`2[TSource,TResult].ToArray () [0x00000] in <4525b7b9272d4ae9a73f9602836d742a>:0
at System.Linq.Enumerable.ToArray[TSource] (System.Collections.Generic.IEnumerable`1[T] source) [0x00000] in <4525b7b9272d4ae9a73f9602836d742a>:0
at Mono.Debugging.Utils.RoslynUtil.WarmUpRoslyn (JetBrains.Util.ILogger logger) [0x00000] in <f4e9806ba0a74c7b8387a0564f7391c6>:0
at Mono.Debugging.Utils.RoslynWarmer.<Start>b__5_0 () [0x00000] in <f4e9806ba0a74c7b8387a0564f7391c6>:0
at System.Threading.Tasks.Task.InnerInvoke () [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading.Tasks.Task.Execute () [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading.Tasks.Task.ExecutionContextCallback (System.Object obj) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading.Tasks.Task.ExecuteWithThreadLocal (System.Threading.Tasks.Task& currentTaskSlot) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading.Tasks.Task.ExecuteEntry (System.Boolean bPreventDoubleExecution) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading.Tasks.Task.System.Threading.IThreadPoolWorkItem.ExecuteWorkItem () [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading.ThreadPoolWorkQueue.Dispatch () [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading._ThreadPoolWaitCallback.PerformWaitCallback () [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
java.lang.Throwable: Exception in debugger process: Failed to resolve assembly Could not load the file 'Microsoft.CodeAnalysis.CSharp.resources'.
--- EXCEPTION #1/2 [FileNotFoundException]
Message = “Could not load the file 'Microsoft.CodeAnalysis.CSharp.resources'.”
ExceptionPath = Root.InnerException
ClassName = System.IO.FileNotFoundException
HResult = COR_E_FILENOTFOUND=E_FILENOTFOUND=WIN32_ERROR_FILE_NOT_FOUND=80070002
Source = mscorlib
FileNotFound_FileName = Microsoft.CodeAnalysis.CSharp.resources
StackTraceString = “
at System.AppDomain.Load (System.Reflection.AssemblyName assemblyRef, System.Security.Policy.Evidence assemblySecurity) [0x0007a] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at (wrapper remoting-invoke-with-check) System.AppDomain.Load(System.Reflection.AssemblyName,System.Security.Policy.Evidence)
at System.AppDomain.Load (System.Reflection.AssemblyName assemblyRef) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at (wrapper remoting-invoke-with-check) System.AppDomain.Load(System.Reflection.AssemblyName)
at System.Reflection.Assembly.Load (System.Reflection.AssemblyName assemblyRef) [0x00005] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at Mono.Debugging.BindingRedirects.DefaultBindingRedirectResolver.LoadAssembly (System.String assemblyName) [0x00006] in <f4e9806ba0a74c7b8387a0564f7391c6>:0
at Mono.Debugging.BindingRedirects.DefaultBindingRedirectResolver.TryResolve (System.ResolveEventArgs args) [0x00157] in <f4e9806ba0a74c7b8387a0564f7391c6>:0
at Mono.Debugging.BindingRedirects.DefaultBindingRedirectResolver.TryResolve (System.ResolveEventArgs args, System.Reflection.Assembly& assembly) [0x00000] in <f4e9806ba0a74c7b8387a0564f7391c6>:0
at Mono.Debugging.BindingRedirects.BindingRedirectManager.ResolveAssembly (System.Object sender, System.ResolveEventArgs args) [0x0001d] in <f4e9806ba0a74c7b8387a0564f7391c6>:0
--- Outer ---
--- EXCEPTION #2/2 [LoggerException]
Message = “Failed to resolve assembly Could not load the file 'Microsoft.CodeAnalysis.CSharp.resources'.”
ExceptionPath = Root
ClassName = JetBrains.Util.LoggerException
InnerException = “Exception #1 at Root.InnerException”
HResult = COR_E_APPLICATION=80131600
StackTraceString = “
at JetBrains.Util.ILoggerEx.LogException (JetBrains.Util.ILogger this, JetBrains.Diagnostics.LoggingLevel level, System.Exception exception, JetBrains.Util.ExceptionOrigin exceptionOrigin, System.String comment) [0x00000] in <218f6f2ee6094a33981cc1692b84877e>:0
at JetBrains.Util.ILoggerEx.Error (JetBrains.Util.ILogger this, System.Exception ex, System.String message) [0x00000] in <218f6f2ee6094a33981cc1692b84877e>:0
at Mono.Debugging.BindingRedirects.BindingRedirectManager.ResolveAssembly (System.Object sender, System.ResolveEventArgs args) [0x00000] in <f4e9806ba0a74c7b8387a0564f7391c6>:0
at System.AppDomain.DoAssemblyResolve (System.String name, System.Reflection.Assembly requestingAssembly, System.Boolean refonly) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.AppDomain.LoadAssembly (System.AppDomain , System.String , System.Security.Policy.Evidence , System.Boolean , System.Threading.StackCrawlMark& ) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.AppDomain.LoadSatellite (System.Reflection.AssemblyName assemblyRef, System.Boolean throwOnError, System.Threading.StackCrawlMark& stackMark) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Reflection.Assembly.InternalGetSatelliteAssembly (System.String name, System.Globalization.CultureInfo culture, System.Version version, System.Boolean throwOnFileNotFound, System.Threading.StackCrawlMark& stackMark) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Resources.ManifestBasedResourceGroveler.GetSatelliteAssembly (System.Globalization.CultureInfo lookForCulture, System.Threading.StackCrawlMark& stackMark) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Resources.ManifestBasedResourceGroveler.GrovelForResourceSet (System.Globalization.CultureInfo culture, System.Collections.Generic.Dictionary`2[TKey,TValue] localResourceSets, System.Boolean tryParents, System.Boolean createIfNotExists, System.Threading.StackCrawlMark& stackMark) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Resources.ResourceManager.InternalGetResourceSet (System.Globalization.CultureInfo requestedCulture, System.Boolean createIfNotExists, System.Boolean tryParents, System.Threading.StackCrawlMark& stackMark) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Resources.ResourceManager.InternalGetResourceSet (System.Globalization.CultureInfo culture, System.Boolean createIfNotExists, System.Boolean tryParents) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Resources.ResourceManager.GetString (System.String name, System.Globalization.CultureInfo culture) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at Microsoft.CodeAnalysis.CSharp.ErrorFacts.GetMessage (Microsoft.CodeAnalysis.CSharp.ErrorCode code, System.Globalization.CultureInfo culture) [0x00000] in <2c65d78f5f724b76bf0039ad582f29c4>:0
at Microsoft.CodeAnalysis.CSharp.MessageProvider.LoadMessage (System.Int32 code, System.Globalization.CultureInfo language) [0x00000] in <2c65d78f5f724b76bf0039ad582f29c4>:0
at Microsoft.CodeAnalysis.DiagnosticInfo.GetMessage (System.IFormatProvider formatProvider) [0x00000] in <51a5d2357a2346cf9f22833fc4af35ba>:0
at Microsoft.CodeAnalysis.DiagnosticWithInfo.GetMessage (System.IFormatProvider formatProvider) [0x00000] in <51a5d2357a2346cf9f22833fc4af35ba>:0
at Mono.Debugging.Utils.RoslynUtil+<>c.<WarmUpRoslyn>b__0_0 (Microsoft.CodeAnalysis.Diagnostic x) [0x00000] in <f4e9806ba0a74c7b8387a0564f7391c6>:0
at System.Linq.Enumerable+SelectArrayIterator`2[TSource,TResult].ToArray () [0x00000] in <4525b7b9272d4ae9a73f9602836d742a>:0
at System.Linq.Enumerable.ToArray[TSource] (System.Collections.Generic.IEnumerable`1[T] source) [0x00000] in <4525b7b9272d4ae9a73f9602836d742a>:0
at Mono.Debugging.Utils.RoslynUtil.WarmUpRoslyn (JetBrains.Util.ILogger logger) [0x00000] in <f4e9806ba0a74c7b8387a0564f7391c6>:0
at Mono.Debugging.Utils.RoslynWarmer.<Start>b__5_0 () [0x00000] in <f4e9806ba0a74c7b8387a0564f7391c6>:0
at System.Threading.Tasks.Task.InnerInvoke () [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading.Tasks.Task.Execute () [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading.Tasks.Task.ExecutionContextCallback (System.Object obj) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading.Tasks.Task.ExecuteWithThreadLocal (System.Threading.Tasks.Task& currentTaskSlot) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading.Tasks.Task.ExecuteEntry (System.Boolean bPreventDoubleExecution) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading.Tasks.Task.System.Threading.IThreadPoolWorkItem.ExecuteWorkItem () [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading.ThreadPoolWorkQueue.Dispatch () [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading._ThreadPoolWaitCallback.PerformWaitCallback () [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at com.intellij.openapi.diagnostic.Logger.error(Logger.java:145)
at com.jetbrains.rider.debugger.DebuggerWorkerProcessHandler$1.invoke(DebuggerWorkerProcessHandler.kt:62)
at com.jetbrains.rider.debugger.DebuggerWorkerProcessHandler$1.invoke(DebuggerWorkerProcessHandler.kt:22)
at com.jetbrains.rd.util.reactive.Signal.fire(Signal.kt:30)
at com.jetbrains.rd.framework.impl.RdSignal.onWireReceived(RdSignal.kt:39)
at com.jetbrains.rd.framework.MessageBroker$invoke$1.invoke(MessageBroker.kt:28)
at com.jetbrains.rd.framework.MessageBroker$invoke$1.invoke(MessageBroker.kt:11)
at com.jetbrains.rdclient.protocol.RdDispatcher.a(RdDispatcher.kt:83)
at com.jetbrains.rdclient.protocol.RdDispatcher.access$flushAll(RdDispatcher.kt:14)
at com.jetbrains.rdclient.protocol.RdDispatcher$flushAllRunnable$1.run(RdDispatcher.kt:19)
at com.intellij.openapi.application.TransactionGuardImpl$2.run(TransactionGuardImpl.java:309)
at com.intellij.openapi.application.impl.LaterInvocator$FlushQueue.doRun(LaterInvocator.java:441)
at com.intellij.openapi.application.impl.LaterInvocator$FlushQueue.runNextEvent(LaterInvocator.java:424)
at com.intellij.openapi.application.impl.LaterInvocator$FlushQueue.run(LaterInvocator.java:407)
at java.desktop/java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:313)
at java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:776)
at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:727)
at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:721)
at java.base/java.security.AccessController.doPrivileged(Native Method)
at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:85)
at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:746)
at com.intellij.ide.IdeEventQueue.defaultDispatchEvent(IdeEventQueue.java:908)
at com.intellij.ide.IdeEventQueue._dispatchEvent(IdeEventQueue.java:781)
at com.intellij.ide.IdeEventQueue.lambda$dispatchEvent$8(IdeEventQueue.java:424)
at com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(CoreProgressManager.java:698)
at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:423)
at java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:203)
at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:124)
at java.desktop/java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:113)
at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:109)
at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
at java.desktop/java.awt.EventDispatchThread.run(EventDispatchThread.java:90)
2020-01-10 00:33:40,385 | ERROR | DebuggerWorkerProcessHandler | JetBrains Rider 2019.3.1 Build #RD-193.5662.14
2020-01-10 00:33:40,385 | ERROR | DebuggerWorkerProcessHandler | JDK: 11.0.5; VM: OpenJDK 64-Bit Server VM; Vendor: JetBrains s.r.o
2020-01-10 00:33:40,385 | ERROR | DebuggerWorkerProcessHandler | OS: Linux
2020-01-10 00:33:40,391 | ERROR | DebuggerWorkerProcessHandler | Last Action: Debug
2020-01-10 00:33:40,391 | ERROR | DebuggerWorkerProcessHandler | Exception in debugger process: Failed to resolve assembly Could not load the file 'Microsoft.CodeAnalysis.CSharp.resources'.
--- EXCEPTION #1/2 [FileNotFoundException]
Message = “Could not load the file 'Microsoft.CodeAnalysis.CSharp.resources'.”
ExceptionPath = Root.InnerException
ClassName = System.IO.FileNotFoundException
HResult = COR_E_FILENOTFOUND=E_FILENOTFOUND=WIN32_ERROR_FILE_NOT_FOUND=80070002
Source = mscorlib
FileNotFound_FileName = Microsoft.CodeAnalysis.CSharp.resources
StackTraceString = “
at System.AppDomain.Load (System.Reflection.AssemblyName assemblyRef, System.Security.Policy.Evidence assemblySecurity) [0x0007a] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at (wrapper remoting-invoke-with-check) System.AppDomain.Load(System.Reflection.AssemblyName,System.Security.Policy.Evidence)
at System.AppDomain.Load (System.Reflection.AssemblyName assemblyRef) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at (wrapper remoting-invoke-with-check) System.AppDomain.Load(System.Reflection.AssemblyName)
at System.Reflection.Assembly.Load (System.Reflection.AssemblyName assemblyRef) [0x00005] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at Mono.Debugging.BindingRedirects.DefaultBindingRedirectResolver.LoadAssembly (System.String assemblyName) [0x00006] in <f4e9806ba0a74c7b8387a0564f7391c6>:0
at Mono.Debugging.BindingRedirects.DefaultBindingRedirectResolver.TryResolve (System.ResolveEventArgs args) [0x00157] in <f4e9806ba0a74c7b8387a0564f7391c6>:0
at Mono.Debugging.BindingRedirects.DefaultBindingRedirectResolver.TryResolve (System.ResolveEventArgs args, System.Reflection.Assembly& assembly) [0x00000] in <f4e9806ba0a74c7b8387a0564f7391c6>:0
at Mono.Debugging.BindingRedirects.BindingRedirectManager.ResolveAssembly (System.Object sender, System.ResolveEventArgs args) [0x0001d] in <f4e9806ba0a74c7b8387a0564f7391c6>:0
--- Outer ---
--- EXCEPTION #2/2 [LoggerException]
Message = “Failed to resolve assembly Could not load the file 'Microsoft.CodeAnalysis.CSharp.resources'.”
ExceptionPath = Root
ClassName = JetBrains.Util.LoggerException
InnerException = “Exception #1 at Root.InnerException”
HResult = COR_E_APPLICATION=80131600
StackTraceString = “
at JetBrains.Util.ILoggerEx.LogException (JetBrains.Util.ILogger this, JetBrains.Diagnostics.LoggingLevel level, System.Exception exception, JetBrains.Util.ExceptionOrigin exceptionOrigin, System.String comment) [0x00000] in <218f6f2ee6094a33981cc1692b84877e>:0
at JetBrains.Util.ILoggerEx.Error (JetBrains.Util.ILogger this, System.Exception ex, System.String message) [0x00000] in <218f6f2ee6094a33981cc1692b84877e>:0
at Mono.Debugging.BindingRedirects.BindingRedirectManager.ResolveAssembly (System.Object sender, System.ResolveEventArgs args) [0x00000] in <f4e9806ba0a74c7b8387a0564f7391c6>:0
at System.AppDomain.DoAssemblyResolve (System.String name, System.Reflection.Assembly requestingAssembly, System.Boolean refonly) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.AppDomain.LoadAssembly (System.AppDomain , System.String , System.Security.Policy.Evidence , System.Boolean , System.Threading.StackCrawlMark& ) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.AppDomain.LoadSatellite (System.Reflection.AssemblyName assemblyRef, System.Boolean throwOnError, System.Threading.StackCrawlMark& stackMark) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Reflection.Assembly.InternalGetSatelliteAssembly (System.String name, System.Globalization.CultureInfo culture, System.Version version, System.Boolean throwOnFileNotFound, System.Threading.StackCrawlMark& stackMark) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Resources.ManifestBasedResourceGroveler.GetSatelliteAssembly (System.Globalization.CultureInfo lookForCulture, System.Threading.StackCrawlMark& stackMark) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Resources.ManifestBasedResourceGroveler.GrovelForResourceSet (System.Globalization.CultureInfo culture, System.Collections.Generic.Dictionary`2[TKey,TValue] localResourceSets, System.Boolean tryParents, System.Boolean createIfNotExists, System.Threading.StackCrawlMark& stackMark) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Resources.ResourceManager.InternalGetResourceSet (System.Globalization.CultureInfo requestedCulture, System.Boolean createIfNotExists, System.Boolean tryParents, System.Threading.StackCrawlMark& stackMark) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Resources.ResourceManager.InternalGetResourceSet (System.Globalization.CultureInfo culture, System.Boolean createIfNotExists, System.Boolean tryParents) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Resources.ResourceManager.GetString (System.String name, System.Globalization.CultureInfo culture) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at Microsoft.CodeAnalysis.CSharp.ErrorFacts.GetMessage (Microsoft.CodeAnalysis.CSharp.ErrorCode code, System.Globalization.CultureInfo culture) [0x00000] in <2c65d78f5f724b76bf0039ad582f29c4>:0
at Microsoft.CodeAnalysis.CSharp.MessageProvider.LoadMessage (System.Int32 code, System.Globalization.CultureInfo language) [0x00000] in <2c65d78f5f724b76bf0039ad582f29c4>:0
at Microsoft.CodeAnalysis.DiagnosticInfo.GetMessage (System.IFormatProvider formatProvider) [0x00000] in <51a5d2357a2346cf9f22833fc4af35ba>:0
at Microsoft.CodeAnalysis.DiagnosticWithInfo.GetMessage (System.IFormatProvider formatProvider) [0x00000] in <51a5d2357a2346cf9f22833fc4af35ba>:0
at Mono.Debugging.Utils.RoslynUtil+<>c.<WarmUpRoslyn>b__0_0 (Microsoft.CodeAnalysis.Diagnostic x) [0x00000] in <f4e9806ba0a74c7b8387a0564f7391c6>:0
at System.Linq.Enumerable+SelectArrayIterator`2[TSource,TResult].ToArray () [0x00000] in <4525b7b9272d4ae9a73f9602836d742a>:0
at System.Linq.Enumerable.ToArray[TSource] (System.Collections.Generic.IEnumerable`1[T] source) [0x00000] in <4525b7b9272d4ae9a73f9602836d742a>:0
at Mono.Debugging.Utils.RoslynUtil.WarmUpRoslyn (JetBrains.Util.ILogger logger) [0x00000] in <f4e9806ba0a74c7b8387a0564f7391c6>:0
at Mono.Debugging.Utils.RoslynWarmer.<Start>b__5_0 () [0x00000] in <f4e9806ba0a74c7b8387a0564f7391c6>:0
at System.Threading.Tasks.Task.InnerInvoke () [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading.Tasks.Task.Execute () [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading.Tasks.Task.ExecutionContextCallback (System.Object obj) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading.Tasks.Task.ExecuteWithThreadLocal (System.Threading.Tasks.Task& currentTaskSlot) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading.Tasks.Task.ExecuteEntry (System.Boolean bPreventDoubleExecution) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading.Tasks.Task.System.Threading.IThreadPoolWorkItem.ExecuteWorkItem () [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading.ThreadPoolWorkQueue.Dispatch () [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading._ThreadPoolWaitCallback.PerformWaitCallback () [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
java.lang.Throwable: Exception in debugger process: Failed to resolve assembly Could not load the file 'Microsoft.CodeAnalysis.CSharp.resources'.
--- EXCEPTION #1/2 [FileNotFoundException]
Message = “Could not load the file 'Microsoft.CodeAnalysis.CSharp.resources'.”
ExceptionPath = Root.InnerException
ClassName = System.IO.FileNotFoundException
HResult = COR_E_FILENOTFOUND=E_FILENOTFOUND=WIN32_ERROR_FILE_NOT_FOUND=80070002
Source = mscorlib
FileNotFound_FileName = Microsoft.CodeAnalysis.CSharp.resources
StackTraceString = “
at System.AppDomain.Load (System.Reflection.AssemblyName assemblyRef, System.Security.Policy.Evidence assemblySecurity) [0x0007a] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at (wrapper remoting-invoke-with-check) System.AppDomain.Load(System.Reflection.AssemblyName,System.Security.Policy.Evidence)
at System.AppDomain.Load (System.Reflection.AssemblyName assemblyRef) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at (wrapper remoting-invoke-with-check) System.AppDomain.Load(System.Reflection.AssemblyName)
at System.Reflection.Assembly.Load (System.Reflection.AssemblyName assemblyRef) [0x00005] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at Mono.Debugging.BindingRedirects.DefaultBindingRedirectResolver.LoadAssembly (System.String assemblyName) [0x00006] in <f4e9806ba0a74c7b8387a0564f7391c6>:0
at Mono.Debugging.BindingRedirects.DefaultBindingRedirectResolver.TryResolve (System.ResolveEventArgs args) [0x00157] in <f4e9806ba0a74c7b8387a0564f7391c6>:0
at Mono.Debugging.BindingRedirects.DefaultBindingRedirectResolver.TryResolve (System.ResolveEventArgs args, System.Reflection.Assembly& assembly) [0x00000] in <f4e9806ba0a74c7b8387a0564f7391c6>:0
at Mono.Debugging.BindingRedirects.BindingRedirectManager.ResolveAssembly (System.Object sender, System.ResolveEventArgs args) [0x0001d] in <f4e9806ba0a74c7b8387a0564f7391c6>:0
--- Outer ---
--- EXCEPTION #2/2 [LoggerException]
Message = “Failed to resolve assembly Could not load the file 'Microsoft.CodeAnalysis.CSharp.resources'.”
ExceptionPath = Root
ClassName = JetBrains.Util.LoggerException
InnerException = “Exception #1 at Root.InnerException”
HResult = COR_E_APPLICATION=80131600
StackTraceString = “
at JetBrains.Util.ILoggerEx.LogException (JetBrains.Util.ILogger this, JetBrains.Diagnostics.LoggingLevel level, System.Exception exception, JetBrains.Util.ExceptionOrigin exceptionOrigin, System.String comment) [0x00000] in <218f6f2ee6094a33981cc1692b84877e>:0
at JetBrains.Util.ILoggerEx.Error (JetBrains.Util.ILogger this, System.Exception ex, System.String message) [0x00000] in <218f6f2ee6094a33981cc1692b84877e>:0
at Mono.Debugging.BindingRedirects.BindingRedirectManager.ResolveAssembly (System.Object sender, System.ResolveEventArgs args) [0x00000] in <f4e9806ba0a74c7b8387a0564f7391c6>:0
at System.AppDomain.DoAssemblyResolve (System.String name, System.Reflection.Assembly requestingAssembly, System.Boolean refonly) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.AppDomain.LoadAssembly (System.AppDomain , System.String , System.Security.Policy.Evidence , System.Boolean , System.Threading.StackCrawlMark& ) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.AppDomain.LoadSatellite (System.Reflection.AssemblyName assemblyRef, System.Boolean throwOnError, System.Threading.StackCrawlMark& stackMark) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Reflection.Assembly.InternalGetSatelliteAssembly (System.String name, System.Globalization.CultureInfo culture, System.Version version, System.Boolean throwOnFileNotFound, System.Threading.StackCrawlMark& stackMark) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Resources.ManifestBasedResourceGroveler.GetSatelliteAssembly (System.Globalization.CultureInfo lookForCulture, System.Threading.StackCrawlMark& stackMark) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Resources.ManifestBasedResourceGroveler.GrovelForResourceSet (System.Globalization.CultureInfo culture, System.Collections.Generic.Dictionary`2[TKey,TValue] localResourceSets, System.Boolean tryParents, System.Boolean createIfNotExists, System.Threading.StackCrawlMark& stackMark) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Resources.ResourceManager.InternalGetResourceSet (System.Globalization.CultureInfo requestedCulture, System.Boolean createIfNotExists, System.Boolean tryParents, System.Threading.StackCrawlMark& stackMark) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Resources.ResourceManager.InternalGetResourceSet (System.Globalization.CultureInfo culture, System.Boolean createIfNotExists, System.Boolean tryParents) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Resources.ResourceManager.GetString (System.String name, System.Globalization.CultureInfo culture) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at Microsoft.CodeAnalysis.CSharp.ErrorFacts.GetMessage (Microsoft.CodeAnalysis.CSharp.ErrorCode code, System.Globalization.CultureInfo culture) [0x00000] in <2c65d78f5f724b76bf0039ad582f29c4>:0
at Microsoft.CodeAnalysis.CSharp.MessageProvider.LoadMessage (System.Int32 code, System.Globalization.CultureInfo language) [0x00000] in <2c65d78f5f724b76bf0039ad582f29c4>:0
at Microsoft.CodeAnalysis.DiagnosticInfo.GetMessage (System.IFormatProvider formatProvider) [0x00000] in <51a5d2357a2346cf9f22833fc4af35ba>:0
at Microsoft.CodeAnalysis.DiagnosticWithInfo.GetMessage (System.IFormatProvider formatProvider) [0x00000] in <51a5d2357a2346cf9f22833fc4af35ba>:0
at Mono.Debugging.Utils.RoslynUtil+<>c.<WarmUpRoslyn>b__0_0 (Microsoft.CodeAnalysis.Diagnostic x) [0x00000] in <f4e9806ba0a74c7b8387a0564f7391c6>:0
at System.Linq.Enumerable+SelectArrayIterator`2[TSource,TResult].ToArray () [0x00000] in <4525b7b9272d4ae9a73f9602836d742a>:0
at System.Linq.Enumerable.ToArray[TSource] (System.Collections.Generic.IEnumerable`1[T] source) [0x00000] in <4525b7b9272d4ae9a73f9602836d742a>:0
at Mono.Debugging.Utils.RoslynUtil.WarmUpRoslyn (JetBrains.Util.ILogger logger) [0x00000] in <f4e9806ba0a74c7b8387a0564f7391c6>:0
at Mono.Debugging.Utils.RoslynWarmer.<Start>b__5_0 () [0x00000] in <f4e9806ba0a74c7b8387a0564f7391c6>:0
at System.Threading.Tasks.Task.InnerInvoke () [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading.Tasks.Task.Execute () [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading.Tasks.Task.ExecutionContextCallback (System.Object obj) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading.ExecutionContext.RunInternal (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading.ExecutionContext.Run (System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, System.Object state, System.Boolean preserveSyncCtx) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading.Tasks.Task.ExecuteWithThreadLocal (System.Threading.Tasks.Task& currentTaskSlot) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading.Tasks.Task.ExecuteEntry (System.Boolean bPreventDoubleExecution) [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading.Tasks.Task.System.Threading.IThreadPoolWorkItem.ExecuteWorkItem () [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading.ThreadPoolWorkQueue.Dispatch () [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at System.Threading._ThreadPoolWaitCallback.PerformWaitCallback () [0x00000] in <d3c56f46ec9c44c8b66896c2592902b9>:0
at com.intellij.openapi.diagnostic.Logger.error(Logger.java:145)
at com.jetbrains.rider.debugger.DebuggerWorkerProcessHandler$1.invoke(DebuggerWorkerProcessHandler.kt:62)
at com.jetbrains.rider.debugger.DebuggerWorkerProcessHandler$1.invoke(DebuggerWorkerProcessHandler.kt:22)
at com.jetbrains.rd.util.reactive.Signal.fire(Signal.kt:30)
at com.jetbrains.rd.framework.impl.RdSignal.onWireReceived(RdSignal.kt:39)
at com.jetbrains.rd.framework.MessageBroker$invoke$1.invoke(MessageBroker.kt:28)
at com.jetbrains.rd.framework.MessageBroker$invoke$1.invoke(MessageBroker.kt:11)
at com.jetbrains.rdclient.protocol.RdDispatcher.a(RdDispatcher.kt:83)
at com.jetbrains.rdclient.protocol.RdDispatcher.access$flushAll(RdDispatcher.kt:14)
at com.jetbrains.rdclient.protocol.RdDispatcher$flushAllRunnable$1.run(RdDispatcher.kt:19)
at com.intellij.openapi.application.TransactionGuardImpl$2.run(TransactionGuardImpl.java:309)
at com.intellij.openapi.application.impl.LaterInvocator$FlushQueue.doRun(LaterInvocator.java:441)
at com.intellij.openapi.application.impl.LaterInvocator$FlushQueue.runNextEvent(LaterInvocator.java:424)
at com.intellij.openapi.application.impl.LaterInvocator$FlushQueue.run(LaterInvocator.java:407)
at java.desktop/java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:313)
at java.desktop/java.awt.EventQueue.dispatchEventImpl(EventQueue.java:776)
at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:727)
at java.desktop/java.awt.EventQueue$4.run(EventQueue.java:721)
at java.base/java.security.AccessController.doPrivileged(Native Method)
at java.base/java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:85)
at java.desktop/java.awt.EventQueue.dispatchEvent(EventQueue.java:746)
at com.intellij.ide.IdeEventQueue.defaultDispatchEvent(IdeEventQueue.java:908)
at com.intellij.ide.IdeEventQueue._dispatchEvent(IdeEventQueue.java:781)
at com.intellij.ide.IdeEventQueue.lambda$dispatchEvent$8(IdeEventQueue.java:424)
at com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(CoreProgressManager.java:698)
at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:423)
at java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:203)
at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:124)
at java.desktop/java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:113)
at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:109)
at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
at java.desktop/java.awt.EventDispatchThread.run(EventDispatchThread.java:90)
2020-01-10 00:33:40,395 | ERROR | DebuggerWorkerProcessHandler | JetBrains Rider 2019.3.1 Build #RD-193.5662.14
2020-01-10 00:33:40,395 | ERROR | DebuggerWorkerProcessHandler | JDK: 11.0.5; VM: OpenJDK 64-Bit Server VM; Vendor: JetBrains s.r.o
2020-01-10 00:33:40,395 | ERROR | DebuggerWorkerProcessHandler | OS: Linux
2020-01-10 00:33:40,395 | ERROR | DebuggerWorkerProcessHandler | Last Action: Debug
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment