Per Rovegård
Per Rovegård
The message given by `CallMissingException` lacks call details. I modified the `CallMissingException` constructor to mimic that of `NoResultSetUpException`: ``` CallMissingException(MockRepository *repo, const base_tuple *tuple, const char *funcName) { std::stringstream text;...
* **I'm submitting a ... ** - [x] bug report - [ ] feature request * **Do you want to request a *feature* or report a *bug*?** Report a bug...
AspNetCoreToOpenApi. No service for type 'NSwag.Generation.IOpenApiDocumentGenerator' with .NET 8
Hi! We use NSwag to generate TypeScript clients for our internal controller-based APIs. This works well with `NSwag.MSBuild` 13.20.0 and .NET 7. During the .NET 8 upgrade, I have made...
I'm trying to follow `csharp-semantic.pdf` under docs/samples. When I add this code: ``` var compilation = CSharpCompilation.Create("HelloWorld") .AddReferences( new MetadataFileReference(typeof(object).Assembly.Location)) .AddSyntaxTrees(tree); ``` I get a compilation error because MetadataFileReference is...
I have the following tests inside a .NET 5 project: [Test] public void Single() { Assert.Catch(() => throw new InvalidOperationException("x")); } [Test] public void Multi() { Assert.Multiple(() => { Assert.Catch(()...
**Describe the bug** I have a class with code that similar to: public DateTime GetTime(DateTime? dt) { return (dt ?? DateTime.Now).ToUniversalTime(); } When I run stryker against the code, I...
I have the following situation: * I start Karma with `node --require coffeescript/register' since my Karma config is in CoffeeScript * Karma loads ts-node to support TypeScript modules * I...
Though good for debugging, leaking entire scripts in the log file may be problematic from an error reporting perspective. A middle ground is probably to log the first line of...
Hovering over a local variable may show the contents of another local variable. I think this is due to that the JVM optimizes slot usage. Check whether or not this...
We should be able to determine which script an exception occurs in, and report its ID.