Skip to content

Commit

Permalink
Fix the package description. (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
GillesTourreau authored Oct 11, 2023
1 parent d7c6dcb commit 7cfa05a
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
Binary file added src/Logging.Assertions/Icon.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 29 additions & 0 deletions src/Logging.Assertions/Logging.Assertions.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,40 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<Description>PosInformatique.Logging.Assertions is a library to mock and assert easily the logs generated by the ILogger interface.</Description>
<PackageIcon>Icon.jpg</PackageIcon>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/PosInformatique/PosInformatique.Logging.Assertions</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>
1.0.1
- Various fixes for the NuGet package description.

1.0.0
- Initial version
</PackageReleaseNotes>
<PackageTags>logger log fluent unittest assert assertions logging mock</PackageTags>
</PropertyGroup>

<ItemGroup>
<Content Include="Icon.jpg" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="FluentAssertions" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0" />
</ItemGroup>

<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>

<ItemGroup>
<None Update="Icon.jpg">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>

</Project>

0 comments on commit 7cfa05a

Please sign in to comment.