-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathNhs.Appointments.Api.csproj
More file actions
68 lines (67 loc) · 3.89 KB
/
Nhs.Appointments.Api.csproj
File metadata and controls
68 lines (67 loc) · 3.89 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<AzureFunctionsVersion>v4</AzureFunctionsVersion>
<OutputType>Exe</OutputType>
<PlatformTarget>x64</PlatformTarget>
<Nullable>disable</Nullable>
<LangVersion>latestmajor</LangVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FluentValidation" Version="12.1.1"/>
<PackageReference Include="FluentValidation.DependencyInjectionExtensions" Version="12.1.1"/>
<PackageReference Include="GovukNotify" Version="7.2.0"/>
<PackageReference Include="IdentityModel" Version="7.0.0"/>
<PackageReference Include="MassTransit" Version="9.0.1"/>
<PackageReference Include="MassTransit.WebJobs.ServiceBus" Version="9.0.1"/>
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="6.0.0"/>
<PackageReference Include="Microsoft.Azure.Cosmos" Version="3.52.1"/>
<PackageReference Include="Microsoft.Azure.Functions.Extensions" Version="1.1.0"/>
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.CosmosDB" Version="4.14.0"/>
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.OpenApi" Version="1.6.0"/>
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.ServiceBus" Version="5.24.0"/>
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Timer" Version="4.3.1"/>
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.ServiceBus" Version="5.17.0"/>
<PackageReference Include="Microsoft.Extensions.Azure" Version="1.13.1"/>
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="10.0.3"/>
<PackageReference Include="Microsoft.Extensions.Configuration.AzureAppConfiguration" Version="8.5.0"/>
<FrameworkReference Include="Microsoft.AspNetCore.App"/>
<PackageReference Include="Microsoft.Azure.Functions.Worker" Version="2.51.0"/>
<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="2.0.7"/>
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http.AspNetCore" Version="2.1.0"/>
<PackageReference Include="Microsoft.ApplicationInsights.WorkerService" Version="3.0.0"/>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.3"/>
<PackageReference Include="Microsoft.Azure.Functions.Worker.ApplicationInsights" Version="2.50.0"/>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.3"/>
<PackageReference Include="Microsoft.Extensions.Options" Version="10.0.3"/>
<PackageReference Include="Microsoft.FeatureManagement.AspNetCore" Version="4.4.0"/>
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.16.0"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Nhs.Appointments.Audit\Nhs.Appointments.Audit.csproj"/>
<ProjectReference Include="..\Nhs.Appointments.Core\Nhs.Appointments.Core.csproj"/>
<ProjectReference Include="..\Nhs.Appointments.Persistance\Nhs.Appointments.Persistance.csproj"/>
</ItemGroup>
<ItemGroup>
<None Update="host.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="local.settings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
</None>
<None Update="local.feature.flags.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Using Include="System.Threading.ExecutionContext" Alias="ExecutionContext"/>
</ItemGroup>
</Project>