|
5 | 5 | <TargetFramework>net8.0</TargetFramework> |
6 | 6 | <ImplicitUsings>enable</ImplicitUsings> |
7 | 7 | <Nullable>enable</Nullable> |
| 8 | + </PropertyGroup> |
| 9 | + |
| 10 | + <PropertyGroup> |
| 11 | + <Description>.NET Core command-line (CLI) tool to generate the entities configuration file for data-api-builder. |
| 12 | + </Description> |
| 13 | + <Copyright>Copyright © $([System.DateTime]::Now.ToString(yyyy)) PlatyScript</Copyright> |
| 14 | + <Authors>PlatyScript</Authors> |
| 15 | + <NeutralLanguage>en-US</NeutralLanguage> |
| 16 | + <GenerateDocumentationFile>true</GenerateDocumentationFile> |
| 17 | + <PackageTags> |
| 18 | + dab, data-api-builder, dataApiBuilder, cosmosdb, nosql, sqlserver, azure-sql, postgresql, pgsql, |
| 19 | + mysql, mssql, sql, azure, api, graphql, rest, platyscript |
| 20 | + </PackageTags> |
| 21 | + <PackageProjectUrl>https://github.com/platyscript/DbApiBuilderEntityGenerator</PackageProjectUrl> |
| 22 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 23 | + <!-- <PackageIcon>logo.png</PackageIcon> --> |
| 24 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 25 | + <RepositoryType>git</RepositoryType> |
| 26 | + <RepositoryUrl>https://github.com/platyscript/DbApiBuilderEntityGenerator</RepositoryUrl> |
| 27 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
8 | 28 | <PackageVersion>1.0.1-alpha</PackageVersion> |
9 | 29 | </PropertyGroup> |
10 | 30 |
|
11 | 31 | <ItemGroup> |
12 | 32 | <ProjectReference Include="../DbApiBuilderEntityGenerator.Core/DbApiBuilderEntityGenerator.Core.csproj" /> |
13 | 33 | </ItemGroup> |
14 | 34 |
|
| 35 | + <ItemGroup> |
| 36 | + <PackageReference Include="AssemblyMetadata.Generators" Version="2.1.0" PrivateAssets="All" /> |
| 37 | + <PackageReference Include="MinVer" Version="6.0.0" PrivateAssets="All" /> |
| 38 | + </ItemGroup> |
| 39 | + |
| 40 | + <ItemGroup> |
| 41 | + <!-- <None Include=".\..\..\logo.png"> |
| 42 | + <Pack>true</Pack> |
| 43 | + <PackagePath>\</PackagePath> |
| 44 | + <Visible>false</Visible> |
| 45 | + </None> --> |
| 46 | + <None Include=".\..\..\..\README.md"> |
| 47 | + <Pack>true</Pack> |
| 48 | + <PackagePath>\</PackagePath> |
| 49 | + <Visible>false</Visible> |
| 50 | + </None> |
| 51 | + </ItemGroup> |
| 52 | +</Project> |
15 | 53 | <ItemGroup> |
16 | 54 | <ExeFiles Include="$(TargetDir)\**\*"/> |
17 | 55 | </ItemGroup> |
|
0 commit comments