public async Task ConnectToSomeService() { ... }
public void StartService()
{
// what's the right way to call this here
Task.Run(ConnectToSomeService);
Task.Run( async () => await ConnectToSomeService());
ConnectToSomeService(); // and disable the warning ;)
}