Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">

<!-- Through FsCheck, this project has an FSharp.Core dependency.
F# projects can find the bundled FSharp.Core package from the SDK.
We configure this C# project so it can find the that package in case it is not available from the CI feed. -->
<Import Project="$(MSBuildToolsPath)/FSharp/Microsoft.FSharp.Core.NetSdk.props" />
<PropertyGroup>
<RestoreAdditionalProjectSources Condition="Exists('$(_FSharpCoreLibraryPacksFolder)')">$(RestoreAdditionalProjectSources);$(_FSharpCoreLibraryPacksFolder)</RestoreAdditionalProjectSources>
</PropertyGroup>

<PropertyGroup>
<TargetFrameworks>$(NetCoreAppCurrent);$(NetFrameworkCurrent)</TargetFrameworks>
<IncludeRemoteExecutor>true</IncludeRemoteExecutor>
Expand Down
Loading