-
-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathBoxed.AspNetCore.Swagger.csproj
More file actions
37 lines (29 loc) · 1.58 KB
/
Boxed.AspNetCore.Swagger.csproj
File metadata and controls
37 lines (29 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Label="Build">
<TargetFrameworks>net7.0;net6.0</TargetFrameworks>
<OpenApiGenerateDocuments>false</OpenApiGenerateDocuments>
</PropertyGroup>
<PropertyGroup Label="Package">
<Product>ASP.NET Core Swagger Framework Boxed</Product>
<Description>Provides ASP.NET Core middleware, MVC filters, extension methods and helper code for an ASP.NET Core project implementing Swagger (OpenAPI).</Description>
<PackageTags>ASP.NET;ASP.NET Core;MVC;Boxed;Muhammad Rehan Saeed;Framework;Swagger;OpenAPI;Swashbuckle</PackageTags>
<PackageReadmeFile>Boxed.AspNetCore.Swagger.md</PackageReadmeFile>
</PropertyGroup>
<PropertyGroup Label="Versioning">
<MinVerTagPrefix>Boxed.AspNetCore.</MinVerTagPrefix>
</PropertyGroup>
<ItemGroup Label="Project References">
<ProjectReference Include="..\Boxed.AspNetCore\Boxed.AspNetCore.csproj" />
</ItemGroup>
<ItemGroup Label="Package References (.NET 7)" Condition="'$(TargetFramework)' == 'net7.0'">
<PackageReference Include="Microsoft.AspNetCore.JsonPatch" Version="10.0.8" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
</ItemGroup>
<ItemGroup Label="Package References (.NET 6)" Condition="'$(TargetFramework)' == 'net6.0'">
<PackageReference Include="Microsoft.AspNetCore.JsonPatch" Version="10.0.8" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.0.0" />
</ItemGroup>
<ItemGroup Label="Files">
<None Include="..\..\Documentation\Boxed.AspNetCore.Swagger.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>