add dependency to FSharp.Core

ensure there are no runtime errors when FSharp.Core cannot be located:
* add reference to FSharp.Core 4.7.1 in Flow.Launcher.Core
* update FSharp.Core to 4.7.1 in HelloWorldFSharp
This commit is contained in:
Ioannis G 2020-05-02 14:13:20 +03:00
parent 07be7e2bea
commit 1dcaf62e27
No known key found for this signature in database
GPG key ID: EAC0E4E5E36AC49E
2 changed files with 5 additions and 0 deletions

View file

@ -52,6 +52,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="FSharp.Core" Version="4.7.1" />
<PackageReference Include="JetBrains.Annotations" Version="2019.1.3" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="squirrel.windows" Version="1.5.2" />

View file

@ -29,4 +29,8 @@
<ProjectReference Include="..\..\Flow.Launcher.Plugin\Flow.Launcher.Plugin.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="FSharp.Core" Version="4.7.1" />
</ItemGroup>
</Project>