While working on my Stream Deck plugin for Clockify, I noticed that the API client package I was using, wasn’t up-to-date with the latest version of Clockfiy’s OpenAPI specification. Having played around with Swagger in the past, I thought it should be simple enough to generate a new C# API client from the specs, given […]
Tag: C#
Build C# Project with GitHub Actions
Continuous integration (CI) as done with GitHub Actions serves multiple purposes. You get to continuously check that newly integrated code still works correctly and when it comes to cross-platform development, it also allows you to ensure that new code doesn’t just “works on my machine”, but also on platforms you might not even have the […]
SQL Server on GitHub Actions
Besides SFML, I’ve also taken on the maintenance of Jobbr, a .NET JobServer developed by some co-workers some time ago. With the help of some more people, we managed to migrate the whole machinery from .NET Framework to .NET 6. At the end of the migration, I went ahead and set up GitHub Actions for […]
Serving Files From a ZIP Archive in .NET 6
In recent months, some co-workers and I have slowly started to transform Jobbr, a non-invasive .NET job server, from a .NET Framework to a .NET 6 project. We tried to keep as much as possible in place, and with that also came the serving of static files directly from a ZIP archive. Due to migrating […]