Ilja Nosik
Ilja Nosik
Is it possible to attach the project where a file came from, when we collect all the files? And can we pass this information to the compiler here: https://github.com/fable-compiler/Fable/blob/main/src/Fable.Cli/Main.fs#L507 Then...
> That "compiler" is the fable compiler which indeed compiles file one by one, but most errors come from the F# compiler Got it. I guess I should get familiar...
I think this is a consequence of .NET trying to respect the systems language settings when it comes to strings. I can reproduce the behavior of FSI in the browser...
Maybe we could build a logger for [TAP](https://testanything.org)? There is a curated list of resources about the protocol at [sindresorhus/awesome-tap](https://github.com/sindresorhus/awesome-tap). There are also a couple of reporters, for example, [one...
You might need to install the _Microsoft.NET.Test.Sdk_ package as well.
What is the target framework of your test project? I vaguely remember that projects targetting .NET Framework didn't work when I tried to use `dotnet test` and the VS test...
You're right, the assembly that causes this is `testhost.dll` from _Microsoft.TestPlatform.TestHost_, which is a dependency of _Microsoft.NET.Test.Sdk_. It has the `NeutralResourcesLanguageAttribute` set, which comes from an unreferenced assembly. We could...
Related: #2338.
Same here, starting from 3.0.0.
This is an unfortunate translation of the [original F# code](https://github.com/dotnet/fsharp/blob/6230834b2180ef0a0c0ca821d97972c5362bf321/src/fsharp/FSharp.Core/mailbox.fs#L382-L385). The F# version uses the `option` type to indicate whether the message was handled and replied to within the given...