Alexey Vyskubov

Results 67 comments of Alexey Vyskubov

Hello, modifying edit widget should be entirely possible (though I didn't have a look at your code yet). Would you like to create a pull request or would you like...

Actually, the current behaviour, ignoring fields 5 and 6 in FEN, might potentially lead to bugs. Let's consider FEN of the position appearing after `1. Nf3 Nc6 2. Nf1 Nb8`:...

> The r50 is of unsigned type and it is printed in hex. b.r50 contains a correct value. No, it does not. In the example above I've loaded FEN of...

Yes, we are talking about the same :) I can do a patch along the following lines: - add `fen(gm::Game)` method to emit full FEN, with r50 and move count...

I am not sure if fmvn (unlike hmvc) should really belong to a Board and not to a Game. I think full move count is rather an attribute of "a...

I have exactly the same problem, including failure to load Newtonsoft.Json.

And it is not better with 7.0 RC 2: ``` Resolve assembly 'Microsoft.CodeAnalysis.NetAnalyzers, Culture=neutral, PublicKeyToken=null' Unable to resolve assembly 'Microsoft.CodeAnalysis.NetAnalyzers, Culture=neutral, PublicKeyToken=null'. Resolve assembly 'Microsoft.CodeAnalysis.NetAnalyzers, Culture=neutral, PublicKeyToken=null' Unable to resolve...

I have the latest Roslynator.Dotnet.CLi. This is what I see in the logs (`roslynator.exe analyze -v diag`): ``` Unable to resolve assembly 'Microsoft.CodeAnalysis.Analyzers, Culture=neutral, PublicKeyToken=null'. ``` The same for many...

For me it was .NET 6. I'll try to create small project to reproduce the problem.

``` ❯ dotnet sln new --name Example ❯ dotnet new console --name Example.Project [edit csproj making sure it asks for net 6.0] ❯ dotnet sln add .\Example.Project\Example.Project.csproj ❯ cat .\Example.Project\Example.Project.csproj...