I have a .net 5.0 windows service defined as bellow
.UseWindowsService();
which is set to auto start delayed but it wont start automatically only manually so I know that there no issue with the service its self. the only thing I can think of is that
the service uses System.IO.FileWatcher
and System.IO.Pipes
. is that a dependency that I need to say that the service depends on? if yes which one?