Open mamift opened 1 year ago
I encountered the same error in an ASP.NET Core project.
SilkierQuartz Version: 5.0.356
app.UseSilkierQuartz((services) => services.Options.VirtualPathRoot = "/quartz") ;
it can aviod error.but can't access the page.....
Hello,
I'm getting an
RoutePatternException
when invoking theApplicationBuilderExtensions.UseSilkierQuartz
method inside a WebAssembly.Server project.The full exception trace is:
I think the issue is here at this line inside ApplicationBuilderExtensions.cs:
By default
options.VirtualPathRoot
is always '/', so the string template is pre-prending '/' twice.Seems to only happen when using
WebAssembly.Server
in the same project.