Daniel Stout
Daniel Stout
@alexander-akait thanks for that link, that was helpful. I found a very hacky workaround that seems to work. It's a little more complicated because this project is using the Vue...
In the off chance anyone else is in the same situation - in my case I was trying to do this in the context of a Vue app. The vue-cli-service...
This does appear to be fixed in `BuildBundlerMinifierPlus` (just by virtue of it having a newer version of NUglify I assume)
@kamranayub appEntries is just a list of entrypoints I defined: `const appEntries = ["./src/main.js"];` Then I used them like so: ``` config.entry = () => { return { app: appEntries,...
The solution of adding `modelBuilder.Entity().ToTable((string?)null);` causes an exception when attempting to remove migrations: ``` System.ArgumentNullException: Value cannot be null. (Parameter 'name') at Microsoft.EntityFrameworkCore.Utilities.Check.NotNull[T](T value, String parameterName) at Microsoft.EntityFrameworkCore.RelationalEntityTypeBuilderExtensions.ToTable(EntityTypeBuilder entityTypeBuilder, String...
This DbContext is in a class library that is added to multiple projects which may extend the DbContext to add their own tables. The base project tables need to be...
It no longer logs the warning when I swap `SetValueComparer` and `HasConversion`, like so: ``` bldr.HasConversion(conv); bldr.Metadata.SetValueComparer(comp); ``` It seems like HasConversion clears any assigned ValueComparer, but I don't see...
Sure! It's a Vite bundle that should run in the browser - here's how I was importing it: ``` import prettier from 'prettier/standalone'; import liquidPlugin from '@shopify/prettier-plugin-liquid/standalone'; ``` And in...
Thanks for getting back on this! Glad to know at least I didn't just miss it. It would be a very useful feature. Right now I had to work around...
This would still be great to have