When is F# code analysis coming in visual studio #16088
-
C# has analysis for removing unused using statement, etc. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Visual Studio has some, analyzers sdk will be discussed in future. |
Beta Was this translation helpful? Give feedback.
-
@vzarytovskii, is there a place where the possible designs are being discussed, reviewed, etc. The analyzer SDK could be designed in a way where the analyzer compilation (against some version of FCS) would export the signature metadata of all members accessed by the analyzer, in a fine grained way matching the IL. On the host side, it would have ability to host several versions of FCS, and pick the most recent one that covers all the symbols used by a particular analyzer (or some other strategy). It would remove the need to keep some form of binary compability when some breaking changes to the AST are necessary. |
Beta Was this translation helpful? Give feedback.
-
Nothing at the moment. |
Beta Was this translation helpful? Give feedback.
Visual Studio has some, analyzers sdk will be discussed in future.