plainionist
plainionist
i can try later - meanwhile here is the content of the project i used for testing - maybe this helps (compile elements removed) ``` net6.0 win7-x64 Exe ```
i am testing on windows and even with "default f# classlib template" i get: ``` dotnet new classlib -lang "F#" The template "Class Library" was created successfully. Processing post-creation actions......
I tried this ``` type Parent = { Name : string Age : int Children : Child list } and Child = { Name : string Parent : Parent }...