-
Notifications
You must be signed in to change notification settings - Fork 0
/
swagger2md.csproj
23 lines (20 loc) · 955 Bytes
/
swagger2md.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>1.1.1.0</Version>
<ProduceReferenceAssembly>False</ProduceReferenceAssembly>
<Title>Swagger to markdown generator</Title>
<Description>Swagger to markdown generator</Description>
<RepositoryUrl>https://github.com/xtomas/swagger2md</RepositoryUrl>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
<PackageReference Include="Microsoft.OpenApi" Version="1.6.13" />
<PackageReference Include="Microsoft.OpenApi.Readers" Version="1.6.13" />
</ItemGroup>
</Project>