Skip to content

Commit 2c51bc5

Browse files
committed
Updated csproj
1 parent 35281ac commit 2c51bc5

1 file changed

Lines changed: 10 additions & 27 deletions

File tree

src/DbApiBuilderEntityGenerator/DbApiBuilderEntityGenerator.csproj

Lines changed: 10 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -4,52 +4,35 @@
44
<OutputType>Exe</OutputType>
55
<TargetFramework>net8.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
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>
7+
<Nullable>enable</Nullable>
8+
<ToolCommandName>dab-entity-gen</ToolCommandName>
9+
<PackAsTool>true</PackAsTool>
10+
<Description>.NET Core command-line (CLI) tool to generate the entities configuration for data-api-builder.</Description>
1311
<Copyright>Copyright © $([System.DateTime]::Now.ToString(yyyy)) PlatyScript</Copyright>
1412
<Authors>PlatyScript</Authors>
1513
<NeutralLanguage>en-US</NeutralLanguage>
1614
<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>
15+
<PackageTags>rest graphql api azure sql mssql mysql pgsql postgresql azure-sql sqlserver nosql cosmosdb dataApiBuilder Generation Generator</PackageTags>
2116
<PackageProjectUrl>https://github.com/platyscript/DbApiBuilderEntityGenerator</PackageProjectUrl>
2217
<PackageLicenseExpression>MIT</PackageLicenseExpression>
2318
<!-- <PackageIcon>logo.png</PackageIcon> -->
2419
<PackageReadmeFile>README.md</PackageReadmeFile>
2520
<RepositoryType>git</RepositoryType>
2621
<RepositoryUrl>https://github.com/platyscript/DbApiBuilderEntityGenerator</RepositoryUrl>
2722
<PublishRepositoryUrl>true</PublishRepositoryUrl>
28-
<PackageVersion>1.0.1-alpha</PackageVersion>
23+
<PackageVersion>1.0.1-alpha</PackageVersion>
2924
</PropertyGroup>
3025

3126
<ItemGroup>
3227
<ProjectReference Include="../DbApiBuilderEntityGenerator.Core/DbApiBuilderEntityGenerator.Core.csproj" />
3328
</ItemGroup>
3429

3530
<ItemGroup>
36-
<PackageReference Include="AssemblyMetadata.Generators" Version="2.1.0" PrivateAssets="All" />
37-
<PackageReference Include="MinVer" Version="6.0.0" PrivateAssets="All" />
31+
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="4.1.1" />
32+
<PackageReference Include="Serilog.Extensions.Hosting" Version="10.0.0" />
33+
<PackageReference Include="Serilog.Sinks.Console" Version="6.1.1" />
3834
</ItemGroup>
3935

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>
5336
<ItemGroup>
5437
<ExeFiles Include="$(TargetDir)\**\*"/>
5538
</ItemGroup>
@@ -59,7 +42,7 @@
5942

6043
<Copy
6144
SourceFiles="@(ExeFiles)"
62-
DestinationFolder="../../dab-entity-gen/" />
45+
DestinationFolder="../../../dab-entity-gen/" />
6346

6447
<Message Text="Copied build files" Importance="High" />
6548
</Target>

0 commit comments

Comments
 (0)