fsprojects-archive / zzarchive-VisualFSharpPowerTools

[ARCHIVED] Power commands for F# in Visual Studio
http://fsprojects.github.io/VisualFSharpPowerTools/
Apache License 2.0
310 stars 77 forks source link

Peek Definition doesn't work in .fsx file on referenced assembly types #1467

Closed kflu closed 7 years ago

kflu commented 7 years ago

Description

Peek definition (alt-F12) doesn't work in .fsx file on types or methods defined in a referenced assemblies

Repro steps

  1. Create test.fsx file
  2. Specify Newtonsoft.Json as a nuget dependency and do nuget install or the like
  3. type JsonConvert.SerializeObject(1) in test.fsx
  4. Press alt-F12 on SerializeObject() method

    Expected behavior

The metadata of JsonConvert.SerializeObject() should be shown in the peek definition window.

Actual behavior

The peek definition window only shows the same script file with cursor jumped onto the line that references the Newtonsoft.Json assembly (#r "...Newtonsoft.Json.dll")

issue

Known workarounds

None

Related information

vasily-kirichenko commented 7 years ago

The feature is now supported in VS 2017 out of the box, if there are bugs, create issues in VFT repo.