Shane Krueger
Shane Krueger
I would propose two immediate changes and one future change: 1. Any `DateTime` value passed to the iCal payload generator that has a `DateTime.Kind` value of `DateTimeKind.Utc` will write in...
It would appear that you're using the Svg.NET library, and if that's the case, the error you're encountering occurs because `SvgDocument.Open` expects a string path to a file, not a...
In English, the original issue was: > Updated the runtime environment to .NET 7, upgraded Qrcoder to version 1.4.3, SvgQRCode is no longer available. Are there any alternative classes or...
I wouldn't endorse adding a third party (non-MS) dependency to the base QRCoder NuGet package. I would rather see something like PR #407 where there are separate packages depending on...
I took a long look at this. I don't think there's an actual bug here. Ultimately I think what's happening is that there is enough memory being allocated such that...
I added PR #495 which uses the `PngByteQRCode` class when png files are requested, optimizing the speed and memory requirements in the default scenario, while also allowing the class to...
I wouldn't endorse adding a third party (non-MS) dependency to the base QRCoder NuGet package. I would rather see something like PR https://github.com/codebude/QRCoder/pull/407 where there are separate packages depending on...
I'm a collaborator/maintainer at [GraphQL.NET](https://github.com/graphql-dotnet/graphql-dotnet) and [linq2db](https://github.com/linq2db/linq2db), and in both scenarios there is a goal for the projects to have "no external dependencies" - and it is so for .NET...
Have you thought about making an protected/private method which deduplicates whitespace by examining the leading/trailing character to remember if it's whitespace (space or CR/LF)? Then just strip leading space character...
Taking this a step further, if we abstract all of the formatting away from the SDLPrinter into the print context, we could add an option to print 'minimized', handled entirely...