Rodrigo Alencar
Rodrigo Alencar
disable the lcd driver in config.tx and try adding it after boot up with dtoverlay command. something like: `sudo dtoverlay dpi24` the issue sounds like a display order provided by...
Thanks for the lead @acidtech. Here's the project that fits perfectly: https://github.com/AndrewFromMelbourne/raspi2raspi from Andrew as well.
The reason for this is that omnisharp does not consider any Attributtes to run or debug Nunit Tests: [src/OmniSharp.DotNetTest/TestFrameworks/NUnitTestFramework.cs](https://github.com/OmniSharp/omnisharp-roslyn/blob/master/src/OmniSharp.DotNetTest/TestFrameworks/NUnitTestFramework.cs) [src/OmniSharp.DotNetTest/TestMethodPropertyProvider.cs](https://github.com/OmniSharp/omnisharp-roslyn/blob/master/src/OmniSharp.DotNetTest/TestMethodPropertyProvider.cs) The Test Framework is "method-driven". The vscode extension tries to...
@jeikabu I forked this project under https://github.com/rodrigo455/NanomsgNG.NET added the following: * NNG v1.8.0 * TLS support with mbedtls libraries added to the runtime (v3.6.0) * Fix Disposable Interface implementation *...
I see the same issue with version 3.18.1. `dotnet test` works with `autofac`, but `nunit` console tool does not. I am using Autofac 8.0.0
I have the csproj with the following ``` ```
with just ``, the project build fine, but it fails to run: ``` NUnit Console 3.17.0+685c5b542b5e9ba632c905f0bd514a773d9758af (Release) Copyright (c) 2022 Charlie Poole, Rob Prouse Monday, July 22, 2024 8:02:43 AM...
The problem for me is that `AppDomain.CurrentDomain.BaseDirectory` points to the project binary folder with `dotnet test`, but that is not the case when running from `nunit` console tool (where it...
My issue is that a dependency of one of the dlls loaded with autofac, use a custom `AssemblyLoadContext` to find other dependencies... and those ones could not be found in...
Is it fair to assume that the default AssemblyLoadContext should be able to find assemblies where the test libraries are located? I would think so... if not me, someone else...