AOT compilation
Currently, SuCoS is compiled as self-contained executable, which includes all DotNet dependencies inside. It allows the user to not have DotNet previously installed in the machine. However, it still uses the JIT to run the app, which makes it much slower.
Consider changing to AOT (native). It will force several changes in the code, because AOT does not allow reflection (used for some tasks like parsing YAML).