I have to serve a static website (multiple files) in an application written in .NET Framework 4.7. On the target system, the application cannot have admin privileges, so IIS is not an option.
I understand, that ASP.NET is the part of the framework supporting this, but how do I implement a static web server with it?
I don't even need anything special, like authentication or TLS, because the client will be on the same host.
I know this would be much easier with .NET 7, but this is not an option for me.