Mikhail Kurinnoi

Results 100 comments of Mikhail Kurinnoi

Here is patch that fix issue with `Assertion failed: !read_lock, file C:\Work\netcoredbg_v78\src\utils\ioredirect.cpp, line 404` ``` From 28defb5d7130d1f7a6736c46e5f7eb177743c010 Mon Sep 17 00:00:00 2001 From: Mikhail Kurinnoi Date: Fri, 10 Jun 2022...

This looks like normal application start like `dotnet run` do. Not sure we could implement this easelly for all supported OSes, since we start it with dbgshim now that also...

We can't just wrap around `dotnet run` since not all out targets have `dotnet` tool at all. From another side we don't plan add CLR corhost implementation inside debugger, as...

Hello, We don't plan support this feature. As I know, only VSCode protocol could provide column as optional parameter during breakpoint setup, but I don't know IDE that support this...

BTW, you could debug this could in case you minor alter it, for example: ``` var lst1 = list.Where(i => i > 1). Where(i => i< 6).ToList(); ``` in this...

> Can we distinguish different breakpoints on the same line by this? Sure. During step, IDE will even show you this (at least VSCode), since debugger return not only line...

Hello, `error: 0x80004005` mean `E_FAIL`, some general error. Please note, new evaluation code still in development, it much more powerful than old evaluation, but work still in progress. I found...

Partially fixed by https://github.com/Samsung/netcoredbg/commit/11e22bf37f3d38bdb7163316887322775fec56f2

netcoredbg sources was updated. Could you please check it? Also, could you please provide debug console output, so, we could analyze it.

``` -> (C) {"command":"setBreakpoints","type":"request","seq":1,"arguments":{"lines":[10,17],"source":{"name":"Program.cs","path":"C:\/REPLACED_PATH\/Program.cs"},"breakpoints":[{"line":10},{"condition":"l.Count() == 2","line":17}],"sourceModified":false}} ``` I believe, debugger will never find source file with path `C:\/REPLACED_PATH\/Program.cs` during breakpoint resolve. You should use same path, that was included into...