Phillip Carter

Results 640 comments of Phillip Carter

I'm going to push this out to dev17.

@toburger nice work! This would be a great thing to add for .NET 5. It could end up getting pretty tricky, though, since we'll want to support more than just...

There's some additional considerations here, since the notion of "referencing a project" is very complicated. * Currently the extensibility mechanism is .NET Standard 2.0, so it works on desktop .NET...

Depends on which MSBuild is involved 🙂

There's also more to consider than just MSBuild here. We're still dealing with subtleties around native assemblies and RID-specific configurations with the dependency manager today, for example.

I am looking into doing the following: * Turning the feature on by default for everyone in 16.9 preview * Looking into if the text buffer can be drawn when...

Okay, additional quirk related to renaming. Various edits that move lots of code around will keep old adornments that screw up the editor. The service needs to invalidate more frequently.

Another quirk I noticed in a new .NET 5 web app is that the lenses will sometimes stagger on when they come in, even though the document is typechecked and...

Another quirk, definitely broken behavior: Create an ASP.NET Core app, modify the following method: ```fsharp [] member _.Get() = let rng = System.Random() let x = 12 let y =...

@vzarytovskii if you're interested in figuring out the rendering quirk, my branch is here: https://github.com/dotnet/fsharp/compare/main...cartermp:codelens-bringup It has diverged a bit mostly in resource files and a few API calls that...