Roy Triesscheijn

Results 5 issues of Roy Triesscheijn

I'm trying to get started with SharpGen. But I think I'm either missing an important configuration aspect or installed component. Because I can't even get the most minimal case to...

Let's take the following pseudo header file as an example ```cpp struct WHEEL { float rimSize; } Wheel; enum DriveType { Front, Rear, All }; struct CAR { Wheel wheels[4];...

Short question that I couldn't find in the docs. I have an instance of an object that implements `IDisposable`. Let's name it **foo**. When I use `container.RegisterInstance(foo)` **foo** will, from...

In the Powershell section of the readme: https://github.com/Schniz/fnm?tab=readme-ov-file#powershell the line you need to add to your profile is wrong. The documentation says: ``` fnm env --use-on-cd --shell power-shell | Out-String...

When I was writing a test that required a more complex argument matcher I resorted to using `check`. To my surprise `check` is evaluated twice when the mocked method was...