MichalStrehovsky / sizegame

Compare binary sizes of canonical Hello World in 18 different languages
210 stars 17 forks source link

Infra same for dotnet #16

Closed rstm-sf closed 1 year ago

MichalStrehovsky commented 1 year ago

I tried updating F# to latest in #11 - see the build failure in the CI. It's running into dotnet/fsharp#15140 that was fixed but the fix didn't make it into a usable build yet.

I don't want to do this kind of configuration sharing because it makes it difficult to reason about where the settings come from.

The C# template csproj is dotnet new console --aot. The F# template is dotnet new console --lang fsharp (there's no --aot for F#).

Merging them makes F# use a non-default configuration and that's against the rules.