We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d927ddb commit 78de308Copy full SHA for 78de308
src/FSharp.Compiler.Interactive.Settings/FSharp.Compiler.Interactive.Settings.fsproj
@@ -34,8 +34,12 @@
34
<Compile Include="fsiaux.fs" />
35
</ItemGroup>
36
37
- <ItemGroup>
38
- <ProjectReference Include="..\FSharp.Core\FSharp.Core.fsproj" />
+ <ItemGroup Condition="'$(FSHARPCORE_USE_PACKAGE)' != 'true'">
+ <ProjectReference Include="$(FSharpSourcesRoot)\FSharp.Core\FSharp.Core.fsproj" />
39
+ </ItemGroup>
40
+
41
+ <ItemGroup Condition="'$(FSHARPCORE_USE_PACKAGE)' == 'true'">
42
+ <PackageReference Include="FSharp.Core" Version="$(FSharpCoreShippedPackageVersionValue)" />
43
44
45
</Project>
0 commit comments