-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBookingsDataExtracts.csproj
More file actions
31 lines (25 loc) · 1.01 KB
/
BookingsDataExtracts.csproj
File metadata and controls
31 lines (25 loc) · 1.01 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
<Project Sdk="Microsoft.NET.Sdk.Worker">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>disable</Nullable>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<DockerfileContext>..\..</DockerfileContext>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration.AzureAppConfiguration" Version="8.5.0"/>
<PackageReference Include="Newtonsoft.Json" Version="13.0.4"/>
<PackageReference Include="Parquet.Net" Version="5.5.0"/>
<PackageReference Include="Microsoft.Extensions.Configuration" Version="10.0.3"/>
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.3"/>
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DataExtract\DataExtract.csproj"/>
</ItemGroup>
</Project>