Does Statiq Dev support F#? #141
-
|
The documentation says it can generate API documentation from .NET code, but the default globbing pattern only matches .cs files. Since C# isn't the only .NET language, I figured I'd ask before I sink a lot of development effort into evaluating this tool for our use. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
Good question. Unfortunately I think the short answer is no, and to do so would require more knowledge of F# than I poses. The longer answer is that while the Buildalyzer tool Statiq uses to process project files and figure out what source files constitute a project, most of the rest of the process is based on Roslyn. That includes the |
Beta Was this translation helpful? Give feedback.
Good question. Unfortunately I think the short answer is no, and to do so would require more knowledge of F# than I poses.
The longer answer is that while the Buildalyzer tool Statiq uses to process project files and figure out what source files constitute a project, most of the rest of the process is based on Roslyn. That includes the
AnalyzeCSharpmodule in Statiq that processes the Roslyn syntax tree and outputs documents for each symbol (which is what drives documentation generation at the theme level). So in theory, Statiq could probably be adapted to VB code without too much trouble since Roslyn can also generate syntax trees for that language, but aAnalyzeFSharpmodule would requi…