Bela VanderVoort

Results 297 comments of Bela VanderVoort

Is there anything in the rider logs about what CSharpier is trying to do? https://github.com/belav/csharpier/tree/main/Src/CSharpier.Rider has details of getting to the logs. I normally only see this when CSharpier is...

@donkee the plugin installs its own version of CSharpier, which is the part I believe is failing. It will determine the version to install based on a dotnet-tools.json or running...

That message doesn't seem related. It could be that you are running into the problem here - https://github.com/belav/csharpier/issues/716#issuecomment-1532178103 which has a workaround for setting PATH. I am hoping to address...

Makes sense to me, and should be pretty straightforward to implement.

@sander1095 based on what `dotnet format style` enforces CSharpier is not going to be a replacement for it. The vast majority of [these rules](https://learn.microsoft.com/en-us/dotnet/fundamentals/code-analysis/style-rules/) go way beyond just changing whitespace....

Based on how I remember this working, and how prettier works, I would expect it to look like this. ```c# var result = myContext.MyDbSet.Where((x) => x.IsOK) .Select((x) => x.Property) .ToList();...

Sorry about missing that primary constructor case, I can hopefully get a fix out today after work.

It looks like this did make it into 0.26.0, are you perhaps on an older version? See https://github.com/belav/csharpier/issues/969

The extension is versioned separately from CSharpier itself. People working on multiple projects with teams may have each project on a different version of csharpier. You probably are using the...