Adam Kauffman
                                            Adam Kauffman
                                        
                                    I'm getting a similar `CancellationToken has been disposed` error but it happens right when I open the VBE for the first time. I'm not opening a new issue because I...
I see movement towards .NET 5 where the ability to generate a single EXE becomes simple: https://docs.microsoft.com/en-us/dotnet/core/deploying/single-file
So I successfully built a portable binary and it came in at a whopping 85MB. I've never used .NET5 or the new single-file deployment so I'm not sure if that's...
NET8 brings [a new way to render razor pages](https://learn.microsoft.com/en-us/aspnet/core/blazor/components/render-components-outside-of-aspnetcore?preserve-view=true&view=aspnetcore-8.0) So this could result in a major back end overhaul to a new Microsoft supported workflow.
> İ hope thşs doesn't remove .net 4.6 2 support. > > Win7 forever.... I'm not sure why you would use 4.6 when 4.8, .NET5, and .NET6 were all supported...
My current workaround is having 2 objects with identical properties, one for loading from CSV and one for saving to the database. This is not ideal. I would rather have...
The behavior I would prefer, when I declare both an `Index` and a `Name` attribute is that I would want the name validation to happen first and if the name...
@AltruCoder If we just use `Index` without name checking the same problem exists. Any field with a matching type will be loading wrong data with no exception thrown. So header...
I got this same error in a .NET6 project: > NotSupportedException: No data is available for encoding 437. For information on defining a custom encoding, see the documentation for the...
I am not seeing a class name that matches the filename. I am seeing something randomly generated like `AspNetCore_$(GUID)`. I ended up here looking for a way to define it....