Loïc Denuzière

Results 263 comments of Loïc Denuzière

> Yes, though we could make it a struct tuple. FSharp.Core doesn't (yet) contain StructChoice unfortunately It would be odd to have one stdlib function use struct tuples in its...

This is released in v1.4.

This is fixed in v1.4: the minimum dependency is now 6.0.10.

I was going to propose `with out` in 2 words, but then I realized that `out` isn't actually a keyword in F#, so it's no better than `without` 😄 More...

> I think we should really follow this path for this one: > > > ....have a flag `--strict:SOME-FEATURE-NAME` that is turned on by default in new project templates.... >...

Among the obsolete rules that could be flushed by a parser clean slate, #806 is also a candidate. Infix operator de-indentation was considered a misfeature by everyone in the conversation...

Hmm, normally this should work. The Bolero project template uses `WebApplication.CreateBuilder`, just like standard ASP.NET Core templates, and not the older `WebHost.CreateDefaultBuilder` that [the documentation](https://github.com/dotnet/docs/blob/main/docs/core/compatibility/containers/8.0/aspnet-port.md) says doesn't support ASPNETCORE_HTTP_PORTS.

This is strange. I am failing to reproduce the issue (I'm on dotnet 8.0.300).

Okay, just to check if I have the correct reproduction: what I see is that `CssScopes` is not recognized by VS and underlined in red, but the project still builds...

It looks like I can fix this by simply always including the generated `obj/CssScopes.cs`, no matter if there are any scoped CSS or not. (Right now there's a condition, and...