suspend fun execute()

in src/rider/main/kotlin/com/jetbrains/rider/plugins/efcore/cli/execution/CliCommandExecutor.kt [14:25]


    suspend fun execute(command: CliCommand): CliCommandResult? {
        try {
            return doExecute(command)
        }
        catch (t: Throwable) {
            logger.error(t)
            return null
        }
        finally {
            refreshSolution()
        }
    }