Skip to content

Commit 7cfa05a

Browse files
Fix the package description. (#2)
1 parent d7c6dcb commit 7cfa05a

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

src/Logging.Assertions/Icon.jpg

142 KB
Loading

src/Logging.Assertions/Logging.Assertions.csproj

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,40 @@
33
<PropertyGroup>
44
<TargetFramework>net6.0</TargetFramework>
55
<Nullable>enable</Nullable>
6+
<GenerateDocumentationFile>True</GenerateDocumentationFile>
7+
<Description>PosInformatique.Logging.Assertions is a library to mock and assert easily the logs generated by the ILogger interface.</Description>
8+
<PackageIcon>Icon.jpg</PackageIcon>
9+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
10+
<PackageProjectUrl>https://github.com/PosInformatique/PosInformatique.Logging.Assertions</PackageProjectUrl>
11+
<PackageReadmeFile>README.md</PackageReadmeFile>
12+
<PackageReleaseNotes>
13+
1.0.1
14+
- Various fixes for the NuGet package description.
15+
16+
1.0.0
17+
- Initial version
18+
</PackageReleaseNotes>
19+
<PackageTags>logger log fluent unittest assert assertions logging mock</PackageTags>
620
</PropertyGroup>
721

22+
<ItemGroup>
23+
<Content Include="Icon.jpg" />
24+
</ItemGroup>
25+
826
<ItemGroup>
927
<PackageReference Include="FluentAssertions" Version="6.0.0" />
1028
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0" />
1129
</ItemGroup>
1230

31+
<ItemGroup>
32+
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
33+
</ItemGroup>
34+
35+
<ItemGroup>
36+
<None Update="Icon.jpg">
37+
<Pack>True</Pack>
38+
<PackagePath>\</PackagePath>
39+
</None>
40+
</ItemGroup>
41+
1342
</Project>

0 commit comments

Comments
 (0)