-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathAtc.Rest.Extended.csproj
More file actions
22 lines (18 loc) · 953 Bytes
/
Atc.Rest.Extended.csproj
File metadata and controls
22 lines (18 loc) · 953 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net9.0;net10.0</TargetFrameworks>
<PackageId>Atc.Rest.Extended</PackageId>
<PackageTags>api;rest;extended</PackageTags>
<Description>Atc.Rest.Extended is a collection of classes and extension methods for Atc.Rest, that contains SwaggerUI, FluentValidation Versioning etc.</Description>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Asp.Versioning.Mvc.ApiExplorer" Version="8.1.0" />
<PackageReference Include="FluentValidation.AspNetCore" Version="11.3.1" />
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.23.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="9.0.10" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="9.0.6" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Atc.Rest\Atc.Rest.csproj" />
</ItemGroup>
</Project>