Nathan Alden, Sr.
Nathan Alden, Sr.
Still happening as of today. The `homepage` property in `package.json` appears to be completely ignored by `yarn build`.
I have noticed the same problem several times. It's pretty annoying because if one wants to be guaranteed to find a package, one must basically type in the whole package...
Thanks for this, @apawsey. I was about to start doing the same work.
I'm having what I think is a similar issue (Npgsql, EF Core 6, NodaTime) but I haven't been able to configure `MappingSchema.Default` in a way that satisfies EF Core. ```cs...
Delete changed to this: ```cs await identityEmailAddressVerifications.ToLinqToDB().DeleteAsync(context.CancellationToken); ``` Gave this new exception: > Quartz.SchedulerException: Job threw an unhandled exception. ---> LinqToDB.EntityFrameworkCore.LinqToDBForEFToolsException: Can not find private property 'RelationalQueryContextFactory._dependencies' in current EFCore...
It worked! Thank you very much for the quick update to EF Core 6. 👍
I'm not sure I could help with any data migrations or whatnot, but I don't mind doing the code refactoring. If you folks decide something, let me know and I'll...
Choosing to call it _JSON5_ unfortunately lent to the confusion. e.g., previous to HTML 5, HTML was just known as HTML to most people. This gives a very strong impression...
Still running into this with .NET Core 2.0. `AssemblyTitle` now seems to be automatically generated by Microsoft's project templates and I don't want to turn off auto-generation just to hack...
I modified the `.csproj` and added this element: `My.App.dll`, which causes the correct output to appear when CommandLineParser generates help text. I should not have to do this, though.