Skip to content

Commit c371346

Browse files
committed
icon + nuget meta data
1 parent 8c4901e commit c371346

4 files changed

Lines changed: 69 additions & 4 deletions

File tree

assets/icon.png

12.9 KB
Loading

assets/icon.svg

Lines changed: 46 additions & 0 deletions
Loading

readme.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,3 +194,11 @@ or use `test-local-tool.ps1` script to pack and install the tool from source.
194194
- .NET 10 SDK
195195
- Spectre.Console / Spectre.Console.Cli
196196
- Microsoft.Extensions.AI + OpenAI client
197+
198+
199+
# Contributing
200+
Fork and submit pull requests! Happy coding!
201+
202+
<p align="center">
203+
<img src="assets/icon.png" alt="DiffLog Logo" width="100" />
204+
</p>

src/DiffLog.csproj

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,19 @@
1111
<ToolCommandName>difflog</ToolCommandName>
1212
<PackageId>DiffLog</PackageId>
1313
<Version>1.0.0</Version>
14-
<Authors>Your Name</Authors>
15-
<Description>A tool for analyzing and displaying diff logs</Description>
14+
<Authors>Joachim Leonfellner</Authors>
15+
<Description>llm crafted release notes from your git history</Description>
1616
<PackageProjectUrl>https://github.com/nor0x/DiffLog</PackageProjectUrl>
1717
<RepositoryUrl>https://github.com/nor0x/DiffLog</RepositoryUrl>
1818
<PackageLicenseExpression>MIT</PackageLicenseExpression>
19-
<PackageTags>diff;log;cli;tool</PackageTags>
19+
<PackageTags>release-notes;changelog;git;diff;ai;llm;openai</PackageTags>
2020
<CommitHash>unknown</CommitHash>
21+
<PackageReadmeFile>readme.md</PackageReadmeFile>
22+
<PackageIcon>icon.png</PackageIcon>
23+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
24+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
25+
<IncludeSymbols>true</IncludeSymbols>
26+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
2127
</PropertyGroup>
2228

2329
<ItemGroup>
@@ -29,9 +35,14 @@
2935
<PackageReference Include="Spectre.Console.Cli" Version="0.53.1" />
3036
</ItemGroup>
3137

38+
<ItemGroup>
39+
<None Include="..\readme.md" Pack="true" PackagePath="\" />
40+
<None Include="..\assets\icon.png" Pack="true" PackagePath="\" />
41+
</ItemGroup>
42+
3243
<ItemGroup>
3344
<AssemblyMetadata Include="RepositoryUrl" Value="$(RepositoryUrl)" />
3445
<AssemblyMetadata Include="CommitHash" Value="$(CommitHash)" />
3546
</ItemGroup>
3647

37-
</Project>
48+
</Project>

0 commit comments

Comments
 (0)