-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathWebAPI.csproj
More file actions
27 lines (22 loc) · 1.15 KB
/
WebAPI.csproj
File metadata and controls
27 lines (22 loc) · 1.15 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<AssemblyName>DesignPatternSamples.WebAPI</AssemblyName>
<RootNamespace>DesignPatternSamples.WebAPI</RootNamespace>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="12.0.1" />
<PackageReference Include="Serilog" Version="4.1.0" />
<PackageReference Include="Serilog.Extensions.Hosting" Version="8.0.0" />
<PackageReference Include="Serilog.Settings.Configuration" Version="8.0.4" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="7.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Application\Application.csproj" />
<ProjectReference Include="..\Infra.Repository.Detran\Infra.Repository.Detran.csproj" />
<ProjectReference Include="..\Workbench.DependencyInjection.Extensions\Workbench.DependencyInjection.Extensions.csproj" />
</ItemGroup>
</Project>