This repository was archived by the owner on Apr 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathAttending.API.csproj
More file actions
43 lines (43 loc) · 2.23 KB
/
Attending.API.csproj
File metadata and controls
43 lines (43 loc) · 2.23 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<AssemblyName>Attendance.API</AssemblyName>
<RootNamespace>OpenCodeFoundation.ESchool.Services.Attending.API</RootNamespace>
</PropertyGroup>
<ItemGroup>
<!-- HealthChecks -->
<PackageReference Include="AspNetCore.HealthChecks.SqlServer" Version="5.0.2" />
<PackageReference Include="AspNetCore.HealthChecks.UI.Client" Version="5.0.1" />
<PackageReference Include="HotChocolate.AspNetCore" Version="11.1.0" />
<PackageReference Include="HotChocolate.Stitching" Version="11.1.0" />
<!-- In-memory commandbus -->
<PackageReference Include="MediatR" Version="9.0.0" />
<PackageReference Include="MediatR.Extensions.Microsoft.DependencyInjection" Version="9.0.0" />
<!-- For validating inputs -->
<PackageReference Include="FluentValidation.AspNetCore" Version="10.0.2" />
<!-- Polly is a .NET resilience and transient-fault-handling library that
allows developers to express policies such as Retry, Circuit Breaker, Timeout,
Bulkhead Isolation, and Fallback in a fluent and thread-safe manner. -->
<PackageReference Include="Polly" Version="7.2.1" />
<!-- Logging -->
<PackageReference Include="Serilog.AspNetCore" Version="4.1.0" />
<PackageReference Include="Serilog.Enrichers.Span" Version="1.2.0" />
<PackageReference Include="Serilog.Sinks.Seq" Version="5.0.0" />
<!-- Swagger -->
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.1.2" />
<!-- Need this package for generating migration files -->
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="5.0.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\Libraries\OpenTelemetry\OpenTelemetry.csproj" />
<ProjectReference Include="..\Attendance.Domain\Attending.Domain.csproj" />
<ProjectReference Include="..\Attendance.Infrastructure\Attending.Infrastructure.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="Application\Validations\" />
<Folder Include="Controllers\" />
</ItemGroup>
</Project>