Frank Ray
Frank Ray
**Expected:** as per the NUnit documentation [here](https://docs.nunit.org/articles/nunit/getting-started/dotnet-core-and-dotnet-standard.html), I should be able to run the unit tests from the command line using `dotnet test`  **Actual:** No tests are ever found...
Regarding the following (incomplete) PR which is now over 6 months old, https://github.com/cake-build/cake/pull/3721, I have rebased @sbwaggoner's original changes on to an up-to-date `develop` branch and made the change recommended...
Build output when performing `meson build`  `meson.build` file with the offending line:  Any ideas what library 'm' is, and how I might be able to fix this error?
- Update all projects to .Net Framework 4.8 (Microsoft's LTS framework) - Fix build issue under Visual Studio 2022, see https://github.com/FlingOS/FlingOS/issues/109
By default, Visual Studio 2022 uses a 64-bit MSBuild, unlike earlier versions that used a 32-bit MSBuild. When I follow the instructions [here](http://www.flingos.co.uk/docs/reference/FlingOS/), step 6. 'The OS should now build.'...
**Background** Currently, when a command alias conflicts with the name of another command, an exception is thrown to notify the user. For example, the following command configuration: ```csharp // Given...
This PR fully addresses, https://github.com/cake-build/cake/issues/3279 "Allow users to use any of the Cake runner arguments as build script arguments" (and indirectly https://github.com/cake-build/cake/issues/2794, which should be closed) The feature has been...
Hello @MichalStrehovsky, Ideally, I would have opened a discussion for this, as good etiquette... Anyway, just to say I've managed to take the no-runtime [example](https://github.com/MichalStrehovsky/zerosharp/tree/master/no-runtime) from this repo, successfully use...
The ability to read and write to IO ports is needed (nb. this is something different to memory mapped IO). [Switch between VGA text modes](https://github.com/FrankRay78/PatienceOS/issues/15) is a good example that...
A custom allocator for managed .Net is ideally what's needed, failing that, just plain old malloc/free calls would be a sufficient starting place. #### Reference implementations From MOOS, this looks...