Nils Andresen
Nils Andresen
> Is that a Rider limitation? I was unable to find an extension point to enable debugging of a custom language in Rider, so "yes". (On the other hand, it...
@Leon99 well, the answer is yes, that is currently by design. Rider, in it's default, somehow assumes some language for Cake files. (I've not found out which, currently.) When installing...
Agreed. Sadly "extending" on existing languages is not possible in Rider. So we can't re-use what's available for c# and have to re-implement everything. Currently the only IDE supporting auto-complete...
> Are you sure? Don't know hacky it will be yet, but I'm pretty sure all we have to do is to just "fake" our own C# project to resharper....
@garywoodfine The best resource I know is the *Custom Language* part of the SDK. You'd best start with [*Implementing a lexer*](https://plugins.jetbrains.com/docs/intellij/implementing-lexer.html) and then continue over the following two chapters. However,...
Back when that feature was introduced (see https://github.com/cake-build/cake-vso/pull/69#issue-678188551), `system.debug` was a boolean, so it was either `false` or `true`. For this, the given code was adequate. It seems that now...
@huw-dhcw Currently the name of the task is always in the first match group of the regex. With the introduction of the `|` it could be either the first or...
Actually it seems `/tools/Cake/Cake.Core.dll` is required, The error from OmniSharp is: ``` [fail]: OmniSharp.Cake.CakeProjectSystem d:\_dev\test-123\bob.cake will be ignored due to an following error System.IO.FileNotFoundException: Cake is not installed. Path d:/_dev/test-123/tools/Cake/Cake.Core.dll...
@pascalberger that sounds like a good idea. Additionally we should add the linting, as well as running the tests (and probably depcheck, too) to the ci build. Sounds like a...
@pascalberger yes - I did that with yesterday's "this is a node project"-view of the world 😄 From a Recipe-view we would best create `Cake.ESLint`. I guess the thing I'm...