Results 11 comments of gurustron

@fpanaccia Also there are line in `AddWkhtmltopdf`: `RotativaPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, wkhtmltopdfRelativePath);` This can be worked around with setting static variable after the call, but then there are lines as OP...

@messaddek try setting Layout to null: ``` @{ Layout = null; } ```

Can you please add your view? Also try adding `"--enable-local-file-access"` flag like this: ``` public class CustomConvertOptions : ConvertOptions { [OptionFlag("--enable-local-file-access")] public bool EnableLocalFileAccess { get; set; } } }...

How is app deployed on Linux? Is it inside docker?

@pg check out [this answer @SO](https://stackoverflow.com/a/77889105/2501279)

@clairernovotny @MehdiK @hazzik can we please have this merged?

Also note that AFAIK the attributes currently are not captured, i.e. since `FromServices` will be correctly inferred everything will work as expected.

Original [SO question](https://stackoverflow.com/a/75920000/2501279). And related PR - https://github.com/mgravell/fast-member/pull/102 .

I would argue that adding something similar to `HybridCacheEntryOptions.Flags` to `HybridCache.RemoveAsync` parameters to allow users to clear out only local cache would be a great first step for user-provided workarounds...

@zonyitoo it's just a local Win 11 machine with docker installed. My guess was that either I've missed something or that's not how the sslocal should be used. Do you...