You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/FSharp.Build/Microsoft.FSharp.NetSdk.props
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,14 @@ WARNING: DO NOT MODIFY this file unless you are knowledgeable about MSBuild and
30
30
</Choose>
31
31
32
32
<PropertyGroup>
33
-
<EnableDefaultCompileItemsCondition=" '$(EnableDefaultCompileItems)' == '' ">false</EnableDefaultCompileItems> <!-- Do not glob F# source files -->
33
+
<EnableDefaultCompileItemsCondition=" '$(EnableDefaultCompileItems)' == '' ">false</EnableDefaultCompileItems> <!-- Do not glob F# source files -->
34
+
<!--
35
+
It turns out that the project system discovers Folders as a consequence of <SomeItem Include="path to files" />
36
+
''''EnableDefaultNoneItems true'''' causes folders and .fsi files to be displayed in the wrong order. because
37
+
Discovers Folders as a consequence of ````<SomeItem Include="path to files" />```` which EnableDefaultNoneItems causes folders and .fsi files to be located in the solution folder
38
+
prior to the ````<Compile Include="" />```` in the .fsproj which messes with the display order in solution explorer.
39
+
-->
40
+
<EnableDefaultNoneItemsCondition=" '$(EnableDefaultNoneItems)' == '' ">false</EnableDefaultNoneItems> <!-- Do not glob F# none items-->
0 commit comments