-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDataExtract.csproj
More file actions
24 lines (19 loc) · 960 Bytes
/
DataExtract.csproj
File metadata and controls
24 lines (19 loc) · 960 Bytes
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>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Security.KeyVault.Secrets" Version="4.9.0"/>
<PackageReference Include="Parquet.Net" Version="5.5.0"/>
<PackageReference Include="Azure.Extensions.AspNetCore.Configuration.Secrets" Version="1.4.0"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration" Version="10.0.3" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.3" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
<ProjectReference Include="..\..\src\api\Nhs.Appointments.Persistance\Nhs.Appointments.Persistance.csproj"/>
<ProjectReference Include="..\..\src\libraries\Nbs.MeshClient\Nbs.MeshClient.csproj"/>
</ItemGroup>
</Project>