forked from jet/equinox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Equinox.fsproj
24 lines (20 loc) · 915 Bytes
/
Equinox.fsproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\Equinox.Core\Infrastructure.fs" Link="Infrastructure.fs" />
<Compile Include="Core.fs" />
<Compile Include="Decider.fs" />
<Compile Include="StreamId.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MinVer" Version="4.2.0" PrivateAssets="All" />
<PackageReference Include="FSharp.Core" Version="6.0.7">
<!-- Workaround for malformed FSharp.Core packages https://github.com/dotnet/fsharp/issues/12706 via https://github.com/fsprojects/Paket/issues/4149-->
<!-- Removal triggers issues in dotnet publish, e.g. for Lambda projects -->
<ExcludeAssets>contentFiles</ExcludeAssets>
</PackageReference>
<PackageReference Include="FSharp.UMX" Version="1.1.0" />
</ItemGroup>
</Project>