-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathInfrastructure.WebApi.csproj
More file actions
39 lines (32 loc) · 1.58 KB
/
Infrastructure.WebApi.csproj
File metadata and controls
39 lines (32 loc) · 1.58 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Folder Include="wwwroot\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="App.Metrics" Version="1.3.0" />
<PackageReference Include="App.Metrics.Extensions.Mvc" Version="1.2.1" />
<PackageReference Include="App.Metrics.Formatters.Json" Version="1.2.0" />
<PackageReference Include="AutoMapper" Version="10.1.1" />
<PackageReference Include="App.Metrics.Abstractions" Version="3.1.0" />
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="8.1.1" />
<PackageReference Include="FluentValidation.AspNetCore" Version="8.6.1" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.1" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="5.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="5.0.9" />
</ItemGroup>
<ItemGroup>
<DotNetCliToolReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Tools" Version="2.0.4" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Core\Core.csproj" />
<ProjectReference Include="..\Infrastructure.Data.MongoDb\Infrastructure.Data.MongoDb.csproj" />
<ProjectReference Include="..\Infrastructure.Server\Infrastructure.Server.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="appsettings.json" CopyToOutputDirectory="Always" />
<None Include="appsettings.*.json" CopyToOutputDirectory="Always" />
</ItemGroup>
</Project>