Miroslav Adamec

Results 7 comments of Miroslav Adamec

I think it would be nice if we can specify just the virtual folder path without the need to specify the host and port.

You can use `IDashboardAuthorizationFilter`. You dont need `Hangfire.Dashboard.Authorization` librarby. Works on .NET 5. ``` public class HangfireAuthorizationFilter : IDashboardAuthorizationFilter { public bool Authorize(DashboardContext context) { return context.GetHttpContext().User.IsInRole(@"AD group"); } }...

@NPadrutt I use only `IsInRole`. But you should check it one more time. I tried my solution several times in the past without success, so I had to use old...

@tomasherceg Thanks for your fast reply. Converter you mentioned works. Similar behaviour can be also achieved using `DateTimeZoneHandling.UTC`. As you mentioned this solution is kind of workaround and can cause...

This does not work in 1.1.3, because of missing `await` in `FileAttachment.Load` function. It works in 2.0.0-beta2, where `FileAttachment.Load` is made `async`. Same problem is discussed in #40

>Hi @mirecad, >where to get the v2 version of the NuGet Package? I cannot even find the repo and who has made it... Look for prerelease packages: https://www.nuget.org/packages/Microsoft.Exchange.WebServices.NETStandard/2.0.0-beta2