Results 29 issues of gmkado

I'm using v30.0.1 but I believe this is true for the latest. ```cs using var writer = new StreamWriter(_csvStream, Encoding.Default, BufferSize, true); using var csvWriter = new CsvWriter(writer, CultureInfo.InvariantCulture); csvWriter.Context.Configuration.ShouldQuote...

I'm trying to verify that a call is not made before another call in a sequence. (It is actually made afterwards, not part of what I want to test but...

**Describe the bug** First off, I noticed these issues because I am using a single context that I pass to all expressions, similar to https://ncalc.github.io/ncalc/articles/expression_context.html#using-a-single-context-for-all-expressions Issue 1. Parameters get overwritten...

bug
help wanted

**Describe the bug** I would expect that given the same expression and context, that the output of evaluation would be the same (aka indempotent). There are some cases where previous...

bug
help wanted

**Describe the bug** Expressions that have strings containing backslashes throw "Invalid token in expression at position (1:1)" **Example Expression** ```cs var expression = new Expression("'\\'"); ```

bug

**Describe the bug** Updates to packages like `"Microsoft.Extensions.Logging.Console` require consumers of NCalc to also update their versions to be compatible: https://github.com/ncalc/ncalc/blob/61e2de4543e1e2df073aa17ef30660aa47bd321a/src/NCalc.Core/NCalc.Core.csproj#L34 Does this library use features from v9.0.5? If not,...

### Nuget Package JsonSchema.Net ### Package Version v8.0.2 ### Operating System None ### .Net Target (if relevant, please specify the version in the description) None ### A clear and concise...

bug
pkg:schema

I want to add code folding using `#region` and `#endregion` similar to how vscode handles these keywords. Is this exposed in the API? I was able to get markers working...

I'm getting a weird error when trying to run a modified version of `Scenario_ExecuteFile_Push`. Here is my code: ```cs public static class Scenarios { static async Task Main() { await...

confirmed