Jason Gravell

Results 14 comments of Jason Gravell

I'm encountering this as well in 0.30.0. `dotnet test` works just fine, as does `dotnet test "--collect:XPlat Code Coverage"`. But `dotnet test "--collect:Code Coverage"` is problematic. Stepped into it with...

@hazzik, I've managed to put together [a minimal reproduction](https://github.com/GravlLift/DelegateDecompilerComponent) for this one. It's very strange.

Yeah, there's not really any conflicts if using the commands (just run dotnet-format first, then run csharpier second, second command "wins"). However there are many VS2022 suggestions that pop up...

With regards to the issue opening, that seems like something to include in [the upcoming contributor guide](https://github.com/Blazored/Modal/issues/138).

I am also experiencing this on the Android side. Curiously though, if I close the app in the simulator (which disconnects my VS debugger), then relaunch it, the error does...

> @GravlLift this is not a Pull Request. Think this was supposed to be a comment directed at you @leo-nascimento...

So as @Zaporozhec7 suspected, it looks like the type definition for `refreshFn`'s callback is wrong. The callback in question gets handled by `SessionRefreshDelegate.refresh`, which in the JS takes as parameters,...

Have you tried? ```let destinationArray: DestinationType[] = sourceArray.map(s => automapper.map(SourceType.name, DestinationType.name, s));```

> @GravlLift looks like contracts are outdated here, tags should be an object like this `{[propertyName: string]: string }` The `Tags` interface below that mostly matches that format, it's really...