-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathTinyHelpers.AspNetCore.Swashbuckle.csproj
More file actions
45 lines (39 loc) · 1.97 KB
/
Copy pathTinyHelpers.AspNetCore.Swashbuckle.csproj
File metadata and controls
45 lines (39 loc) · 1.97 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
44
45
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>TinyHelpers.AspNetCore.Swagger</RootNamespace>
<DocumentationFile>TinyHelpers.AspNetCore.Swashbuckle.xml</DocumentationFile>
<Authors>Marco Minerva</Authors>
<Company>Marco Minerva</Company>
<Product>Tiny Helpers for Swashbuckle ASP.NET Core</Product>
<Title>Tiny Helpers for Swashbuckle ASP.NET Corer</Title>
<Description>A collection of helper methods and classes for Swashbuckle ASP.NET Core that I use every day. I have packed them in a single library to avoid code duplication.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/marcominerva/TinyHelpers/tree/master/src/TinyHelpers.AspNetCore.Swashbuckle</PackageProjectUrl>
<PackageIcon>Toolbox.png</PackageIcon>
<PackageTags>csharp aspnetcore visual-studio net web utilities helpers swagger swashbuckle openapi</PackageTags>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/marcominerva/TinyHelpers.git</RepositoryUrl>
<RepositoryBranch>master</RepositoryBranch>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Remove="TinyHelpers.AspNetCore.Swashbuckle.xml" />
</ItemGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="10.2.1" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\Toolbox.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>