-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathInfrastructure.fsproj
More file actions
32 lines (27 loc) · 1.07 KB
/
Copy pathInfrastructure.fsproj
File metadata and controls
32 lines (27 loc) · 1.07 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<Compile Include="Core.fs"/>
<Compile Include="Settings.fs"/>
<Compile Include="Entities.fs"/>
<Compile Include="Helpers.fs"/>
<Compile Include="Queue.fs"/>
<Compile Include="Repos.fs"/>
<Compile Include="Startup.fs"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Storage.Blobs" Version="12.25.0"/>
<PackageReference Include="Azure.Storage.Queues" Version="12.23.0"/>
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.7"/>
<PackageReference Include="FSharp.SystemTextJson" Version="1.4.36"/>
<PackageReference Include="Microsoft.Extensions.Http.Polly" Version="9.0.7"/>
<PackageReference Include="MongoDB.Driver" Version="3.4.2"/>
<PackageReference Include="Telegram.Bot" Version="22.6.0"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Domain\Domain.fsproj"/>
</ItemGroup>
</Project>