public override Task HandleItemAsync()
    {
        // Call optional found action
        HandledAction?.Invoke(InstallLocation, HandledParameter);

        return(Task.CompletedTask);
    }
    public override async Task HandleItemAsync()
    {
        // Call optional found action
        HandledAction?.Invoke(InstallLocation, HandledParameter);

        // Add the game
        await Services.App.AddNewGameAsync(Game, GameType, InstallLocation);
    }