David Rettenbacher
David Rettenbacher
Using iamakulov's code, the plugin ran - but too late: the warnings were already outputed to the console. I had to use the `afterCompile` hook. ```js // IgnoreNotFoundExportPlugin.js const ModuleDependencyWarning...
Hi @aguerrieri82 , first, thank you for using XamlCSS and your kind words! I see the problem you're having. Using some form of special uri would solve this indeed. But...
I'm on Windows and after debugging I found, that it has to do how the paths are constructed. In `walk` if the path is a .vue file, then the path...
For anyone interested, here's a mapping without the unnecessary conversions (`Sql.ConvertTo(...)`): ```csharp Expressions.MapMember( (Enum e, Enum e2) => e.HasFlag(e2), (t, flag) => ((int)(object)t & (int)(object)flag) != 0); ``` Linq2db: 5.4.0...
Also happens with 7.x version. ### Test case If `IDE0130` and `dotnet_style_namespace_match_folder` are both set to `warning` and a wrong namespace exists in code, then the mentioned exception happens. ```ini...
Still having this problem on .NET 8.0.1
Still having this problem on .NET 8.0.1
I have a workaround - at least on Windows. **No** `` tags or special headers required. In your `MauiProgram.cs`, before calling `AddMauiBlazorWebView()`: ``` Environment.SetEnvironmentVariable("WEBVIEW2_ADDITIONAL_BROWSER_ARGUMENTS", "--disable-features=AutoupgradeMixedContent"); ``` I found this feature...
I tried @bachratyg's workaround, but `dotnet watch` still reloaded my whole application on each `scss`-file change. To make `dotnet watch` _really_ ignore `scss`-file changes, not only you must use ```xml...
@bachratyg You're right, excluding them is actually better 👍