-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsqltoopenapi3.csproj
37 lines (33 loc) · 1.67 KB
/
sqltoopenapi3.csproj
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>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageId>Caligo.SqlToOpenApi3Schemas</PackageId>
<Version>1.1.2</Version>
<Authors>Erik Norman</Authors>
<Company>Caligo s.r.l.</Company>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackAsTool>true</PackAsTool>
<ToolCommandName>SqlToOpenApi3Schemas</ToolCommandName>
<PackageOutputPath>./nupkg</PackageOutputPath>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageReleaseNotes>ReleaseNotes.md</PackageReleaseNotes>
<PackageTags>MS SQL Server;OpenAPI3;schemas</PackageTags>
<Description>This is a command-line tool that extracts schema information from a Microsoft SQL Server database and generates the schemas.yaml and paths.yaml to be used in an OpenAPI 3 specification.</Description>
<RepositoryUrl>https://github.com/caligo-erik/MSSqlToOpenApi3Schemas</RepositoryUrl>
<PackageIcon>icon.png</PackageIcon>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="Dapper" Version="2.1.4" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.5" />
<PackageReference Include="YamlDotNet" Version="13.5.2" />
<None Include="README.md" Pack="true" PackagePath="\" />
<None Include="LICENSE.md" Pack="true" PackagePath="\" />
<None Include="images\icon.png" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>