-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEventGridPublisher.Infrastructure.csproj
More file actions
30 lines (29 loc) · 1.45 KB
/
EventGridPublisher.Infrastructure.csproj
File metadata and controls
30 lines (29 loc) · 1.45 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.18.0" />
<PackageReference Include="Azure.Messaging.EventGrid" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="10.0.4" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.4" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.4" />
<PackageReference Include="Microsoft.Extensions.Options" Version="10.0.4" />
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="10.0.4" />
<PackageReference Include="Polly" Version="8.6.6" />
<PackageReference Include="Polly.Extensions" Version="8.6.6" /> </ItemGroup>
<ItemGroup>
<ProjectReference Include="..\EventGridPublisher.Application\EventGridPublisher.Application.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FluentValidation" Version="12.1.1" />
<PackageReference Include="FluentValidation.DependencyInjectionExtensions" Version="12.1.1" />
<PackageReference Include="MediatR" Version="14.1.0" />
<Folder Include="IdGeneration\" />
<Folder Include="Logging\" />
<Folder Include="Persistence\" />
<Folder Include="Settings\" />
</ItemGroup>
</Project>