SchlenkR

Results 67 comments of SchlenkR

Same Problem here. Creating the missing 'assembly' path seems to solve the issue.

Log is here: [log.txt](https://github.com/georgewfraser/fsharp-language-server/files/2743460/log.txt) If you have a look at the stack trace, you see that that there is a Problem inside here: https://github.com/Microsoft/visualfsharp/blob/9b55eccd1bc83ed123c5ae08c577be5646861830/src/fsharp/SimulatedMSBuildReferenceResolver.fs#L141-L146 It seems that the internal SimulatedMSBuildReferenceResolver...

I try starting with it today...

Finally, I am able to reproduce the issue in the Debugger, @georgewfraser. The error comes from here: https://github.com/georgewfraser/fsharp-language-server/blob/7ce8866f89651a3c7dd99400376fb9516712c85b/src/FSharpLanguageServer/ProjectManager.fs#L242 Next step is to create a project where I can isolate the...

I can confirm it, executing the following steps (VSCode + Windows): * Uninstall the Extension and close vscode * Remove all **georgewfraser.fsharp-language-server-0.1.xxx** folders from the vscode extension folder * Open...

@georgewfraser I think I found the issue, and it's something that should be fixed inside FSharp.Compiler.Service. I raised this issue: https://github.com/Microsoft/visualfsharp/issues/6161 I don't see a possibility this can be fixed...

I like this proposal in general. Yielding values directly in `break` seems like unnecessary or even too restrictive for some corner cases. This is independent of using `for` inside a...

My apologies; I misunderstood the proposal. A solution that comes pretty close to what is proposed is already possible today with a computation builder like this one: ```fsharp type LoopBuilder...

The builder could be optimized by targeting directly array instead of seq (or at least providing a specialized array overload for ‚for‘), by using InlineIfLambda or even by using a...

Related to: https://github.com/dotnet/SqlClient/issues/1397