-
Notifications
You must be signed in to change notification settings - Fork 68
/
Tutorial.fsproj
36 lines (31 loc) · 1.27 KB
/
Tutorial.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
35
36
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
<ItemGroup>
<Compile Include="Infrastructure.fs" />
<Compile Include="Sequence.fs" />
<Compile Include="Gapless.fs" />
<Compile Include="Index.fs" />
<Compile Include="Set.fs" />
<Compile Include="Upload.fs" />
<None Include="Counter.fsx" />
<None Include="Favorites.fsx" />
<None Include="Cosmos.fsx" />
<None Include="Todo.fsx" />
<None Include="AsAt.fsx" />
<None Include="FulfilmentCenter.fsx" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Equinox.CosmosStore\Equinox.CosmosStore.fsproj" />
<ProjectReference Include="..\..\src\Equinox.EventStoreDb\Equinox.EventStoreDb.fsproj" />
<ProjectReference Include="..\..\src\Equinox.MemoryStore\Equinox.MemoryStore.fsproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MinVer" Version="5.0.0" PrivateAssets="All" />
<PackageReference Include="FsCodec.SystemTextJson" Version="3.0.3" />
<PackageReference Include="Serilog.Sinks.Console" Version="5.0.1" />
<PackageReference Include="Serilog.Sinks.Seq" Version="7.0.0" />
</ItemGroup>
</Project>