Daniel Crabtree
Daniel Crabtree
Razor LSP currently does not follow the doctype, despite setting it to html5 doctype, the Razor LSP autocompletes tags with XHTML style. For example, `````` is changed to `````` and...
@HofmeisterAn Here is a minimum reproduction: [WebApp.zip](https://github.com/testcontainers/testcontainers-dotnet/files/15228670/WebApp.zip) --- Results from directly using docker with this project: docker build . -t webapptest -f WebApp/Dockerfile docker create webapptest --name webapptestcontainer Container starts...
I went back to check and that is indeed another difference between the docker direct container and the Testcontainer container. With docker direct, the owner and group for the /app...
I checked the tarball and all the files in that are `700`. So I assume that is where the problem is coming from, as the appsettings files are just copied...
> Indeed, I think this is the issue. Setting the permissions ([mode](https://github.com/testcontainers/testcontainers-dotnet/blob/04262ed25fab714d6f9a0a8f0a318e432d9969cf/src/Testcontainers/Images/DockerfileArchive.cs#L150-L151)) while creating the tarball to entry.TarHeader.Mode = (int)Unix.FileMode755; seems to fix it. The test pass, and the files...
> I need to double-check it with my other tests, but I do not expect this to be an issue. The only situation I can think of would be writing...
I think the workaround of setting the permissions explicitly when writes are required is satisfactory. Unlike the original issue that affects every project, this is a much more niche issue....
I can confirm this bug occurs on v6.5.0 as well. The issue lies in `Swashbuckle.AspNetCore/src/Swashbuckle.AspNetCore.SwaggerGen/SchemaGenerator/SchemaGenerator.cs`. Wherein if `UseOneOfForPolymorphism` OR `UseAllOfForInheritance` is set, then the other is treated as though it...
I have submitted a Pull Request #2683 that fixes this bug.
Does accounting for ordering with integers add a significant performance cost if ordering is not required?