Just a simple library for working with C# Projects inside of systemd
To use first update your .service file to set Type to notify
[Unit]
Description=My Service
[Service]
Type=notify
ExecStart=dotnet myservice.dll
SystemD systemd = new SystemD();
// After startup finished
systemd.SigComplete();
// When reloading
systemd.SigReloading();
// Before program exit
systemd.SigStopping();