F# compiler order of source files

后端 未结 2 991
没有蜡笔的小新
没有蜡笔的小新 2020-12-11 15:32

As I understand it, when using F#, you have to manually list the source files in dependency order for the compiler\'s benefit (if there is any way around that, please let me

相关标签:
2条回答
  • 2020-12-11 16:07

    No, but the typical way to compile F# (at least on Windows; dunno about Mono) is via MSBuild; the .fsproj project file puts each file as a separate <Compile> item on a separate line. What build tools are you using?

    0 讨论(0)
  • 2020-12-11 16:30

    About the Visual Studio 2008 integration, you can move up/down source files with a right click and choosing Move Up, Move Down or use the shortcut Alt+Up Arrow, Alt+Down Arrow after having selected the file.

    0 讨论(0)
提交回复
热议问题