Don Syme

Results 1218 comments of Don Syme

@KevinRansom Could you take a look at this? I think FSharpDependencyManager needs to be made concurrency safe - not its data structures, but rather its use of the working directory...

I suppose a risk of using separate directories (ie fixing this bug) is that we will end up spawning hundreds of resolutions as the programmer is editing the references of...

@vzarytovskii You might like to take a look at this. We should fix this to follow the C# spec

@vzarytovskii I could fix this but we can use this as a first Up for Grabs issue I think?

This appears to be a regression, it compiles with VS2019

The problem is the incorrect presence of a debug point on `url` in this situation is affecting the analysis of the type provider argument If you need a workaround you...

Yes, this is synchronous code. If it helps think of Cancellable as a delegate, e.g., see [this gist](https://gist.github.com/dsyme/bda86cf2c2898a44cbc40f923ecb3afc) Another example where this would be helpful is an optimization the F#...

An example of Cancellable is here: https://gist.github.com/dsyme/5557d61a4393577c4fa0f299ca4220f2 Here a "step over" on "let! v1 = f1()" does not proceed to the next line, but rather completes the enclosing function. The...