-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathEquinox.fsproj
34 lines (28 loc) · 1.35 KB
/
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
25
26
27
28
29
30
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<Sdk Name="Microsoft.DotNet.PackageValidation" Version="1.0.0-preview.7.21379.12" />
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<PackageValidationBaselineVersion>4.0.0</PackageValidationBaselineVersion>
</PropertyGroup>
<ItemGroup>
<Compile Include="Infrastructure.fs" />
<Compile Include="StopwatchInterval.fs" />
<Compile Include="Tracing.fs" />
<Compile Include="Stream.fs" />
<Compile Include="Decider.fs" />
<Compile Include="Category.fs" />
<Compile Include="LazyTask.fs" />
<Compile Include="Cache.fs" />
<Compile Include="Caching.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MinVer" Version="5.0.0" PrivateAssets="All" />
<!-- 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 -->
<!-- Also avoids Rider search finding stuff in FSharp.Core.xml -->
<PackageReference Include="FSharp.Core" Version="6.0.7" ExcludeAssets="contentfiles" />
<PackageReference Include="FsCodec" Version="3.0.0" />
<PackageReference Include="Serilog" Version="2.12.0" />
<PackageReference Include="System.Runtime.Caching" Version="6.0.0" />
</ItemGroup>
</Project>