-
Notifications
You must be signed in to change notification settings - Fork 69
/
Equinox.CosmosStore.fsproj
34 lines (26 loc) · 1.28 KB
/
Equinox.CosmosStore.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="..\Equinox\Infrastructure.fs" />
<Compile Include="..\Equinox\LazyTask.fs" />
<Compile Include="..\Equinox.Core\TaskCell.fs" />
<Compile Include="..\Equinox.Core\Internal.fs" />
<Compile Include="CosmosStoreSerialization.fs" />
<Compile Include="CosmosStore.fs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Condition=" '$(Configuration)' == 'Debug' " Include="..\Equinox\Equinox.fsproj" />
<PackageReference Condition=" '$(Configuration)' == 'Release' " Include="Equinox" Version="[4.0.0, 5.0.0)" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MinVer" Version="5.0.0" PrivateAssets="All" />
<PackageReference Include="FSharp.Core" Version="6.0.7" ExcludeAssets="contentfiles" />
<PackageReference Include="FSharp.Control.TaskSeq" Version="0.4.0" />
<PackageReference Include="Microsoft.Azure.Cosmos" Version="3.35.4" />
<PackageReference Include="System.Text.Json" Version="6.0.10" />
</ItemGroup>
</Project>