Travis

Results 22 comments of Travis

Adding this to terminals.exe.config fixed it: ``` ```

@kennethahoward just in the `configuration` node, updated my comment

Middle clicking works instantly. Yes it opens in new tabs, but it beats waiting for that blue react line.

@ashleyken did you ever find a solution to this?

If I understand correctly, you can do something like this: ``` try { var result = await _mediator.Send(query); } catch (Exception ex) { // ex.InnerException should be your Exception("Show Me")...

does your MainLayout have `@rendermode InteractiveServer`?

ToastObj.ShowAsync has to be called in the UI thread. MessagingCenter's callback is on a different thread. This can be solved using a static EventHandler somewhere in your app.

@togakangaroo Unless I dont understand the question, Commands don't return anything, as you can see `Handle` is void. Use a Query if you need to return something.

Use IQuery (or in the latest IRequest?) when data is needed to be returned. `var data = mediator.Request(query).Data;` https://github.com/mhinze/ShortBus/blob/master/ShortBus.Tests/Example/BasicExample.cs