Chet Husk

Results 587 comments of Chet Husk

@devosalain you should be able to check the Output logs in VS code for the 'extension host' category, as well as the logs for the `F#` category. You can also...

Thanks for this - we'll dig in. I haven't done much MAUI work myself but it is an experience I'd like to be able to support.

We don't have tests for the Ionide layer itself, but it is possible to test excursions to some degree. I'm not really familiar with it though. The 'send to FSI'...

@Titaye that's really useful info! I had no idea the terminal pane could impact things to this degree.

It looks like there may be some API we can use to get the dimensions of the terminal: https://github.com/microsoft/vscode/pull/67919 This might be usable to modify the message we send to...

in extreme cases we could ask fantomas to reformat it with a given maximum width, but yeah it's probably impossible to do correctly in the general case. starting to sound...

I _think_ parsing csproj references is necessary to enable go-to-definition from C# projects, as well as detecting things like cross-language reference finding. Ideally the C# extension for VSCode and Ionide...

Restore doesn't just download nuget packages, more importantly it creates several metadata files (like project.assets.json) in the `Intermediate Output Path` of each project that are required in order to provide...

A few things made @cartermp's sample project work fine for me: * use adaptive LSP server * change the TFM of the project to net7.0 (unsure if this is _required_...

@cartermp when you launch the gitpod, can you cd to the project and run dotnet restore first, before opening the program.fs file?