Ronnie Holm

Results 12 comments of Ronnie Holm

What does some of these do? Their names read mostly like misguided use of pipeline behaviors. Why not put this logic into the actual handlers? If not the immediate handler...

I suppose the alternative would be creating application or domain services (assuming you're using DDD), but sounds like you weighed the pros and cons for your specific case. Typically I...

I assume the NuGet package isn't supposed to install the C libraries.

Indeed. A restore happens as part of $ make build after which $ find . -name *.so ./Examples/bin/Debug/net5.0/runtimes/linux-x64/native/libraylib.so but running the examples fails. Here's some of the output from `dotnet...

If I extend `Raylib-cs-Examples/Examples/Program.cs`: ``` static void Main(string[] args) { // Added line var searchDirectories = AppContext.GetData("NATIVE_DLL_SEARCH_DIRECTORIES"); RunCoreExamples(); RunShapesExamples(); RunTextureExamples(); RunTextExamples(); RunModelExamples(); RunShaderExamples(); RunAudioExamples(); } ``` then `searchDirectories` has the...

To simplify the issue, I created a simple `library.so`: ```c #include // gcc -shared -o library.so -fPIC library.c void Test() { printf("C"); } ``` and a C# file to call...

> Absolutely! @ChrisDill and I both run Arch on our personal machines - which is why we are so confused. That's really odd when you don't have raylib installed in...

Good news. I was testing dotnet run --project Examples/Examples.csproj on Ubuntu 20.04 and the examples load with both .NET 5 and .NET 6. I then tried the same command on...

There's also the HttpPlatformHandler to host Suave under IIS. Ronnie On Wed, Jul 20, 2016 at 2:17 AM, Kasey Speakman [email protected] wrote: > @ademar https://github.com/ademar Thanks for the link. But...

What's the behavior you're after? Why do you consider the above a bug?