|
7 | 7 | </PropertyGroup>
|
8 | 8 |
|
9 | 9 | <PropertyGroup>
|
10 |
| - <Authors>Sergii Lischuk</Authors> |
11 |
| - <Description>A simple and easy cache for HttpClient</Description> |
12 |
| - <PackageProjectUrl>https://codestory.me</PackageProjectUrl> |
13 |
| - <PackageTags>cache, httpclient, library</PackageTags> |
14 |
| - |
15 |
| - <GenerateDocumentationFile>True</GenerateDocumentationFile> |
16 |
| - <NoWarn>$(NoWarn);CS1591</NoWarn> |
17 | 10 | <EnablePackageValidation>true</EnablePackageValidation>
|
| 11 | + |
18 | 12 | <!-- Optional: Detect breaking changes from a previous version -->
|
19 | 13 | <!-- <PackageValidationBaselineVersion>1.0.0</PackageValidationBaselineVersion> -->
|
20 | 14 | </PropertyGroup>
|
21 | 15 |
|
| 16 | + <ItemGroup> |
| 17 | + <PackageReference Include="DotNet.ReproducibleBuilds" Version="1.1.1"> |
| 18 | + <PrivateAssets>all</PrivateAssets> |
| 19 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> |
| 20 | + </PackageReference> |
| 21 | + </ItemGroup> |
| 22 | + |
22 | 23 | <PropertyGroup>
|
23 |
| - <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 24 | + <GenerateDocumentationFile>True</GenerateDocumentationFile> |
| 25 | + |
| 26 | + <!-- If all members are not documented, you can disable the compiler warnings --> |
| 27 | + <NoWarn>$(NoWarn);CS1591</NoWarn> |
24 | 28 | </PropertyGroup>
|
25 | 29 |
|
26 | 30 | <PropertyGroup>
|
27 |
| - <PackageReadmeFile>README.md</PackageReadmeFile> |
| 31 | + <Authors>Sergii Lischuk</Authors> |
| 32 | + <Description>A simple and easy cache for HttpClient</Description> |
| 33 | + |
| 34 | + <!-- PackageProjectUrl is different from the repository URL. It can be a documentation |
| 35 | + website or a website explaining the project --> |
| 36 | + <PackageProjectUrl>https://codestory.me</PackageProjectUrl> |
| 37 | + |
| 38 | + <!-- A list of tags to help the search engine to understand the content of the package --> |
| 39 | + <PackageTags>cache, httpclient, library</PackageTags> |
| 40 | + </PropertyGroup> |
| 41 | + |
| 42 | + <PropertyGroup> |
| 43 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
28 | 44 | </PropertyGroup>
|
29 | 45 |
|
30 | 46 | <PropertyGroup>
|
|
35 | 51 | <None Include="icon.png" Pack="true" PackagePath="" />
|
36 | 52 | </ItemGroup>
|
37 | 53 |
|
| 54 | + <PropertyGroup> |
| 55 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 56 | + </PropertyGroup> |
| 57 | + |
38 | 58 | <ItemGroup>
|
39 |
| - <None Include="README.md" Pack="true" PackagePath="" /> |
| 59 | + <None Include="README.md" Pack="true" PackagePath=""/> |
40 | 60 | </ItemGroup>
|
41 | 61 |
|
42 | 62 | <ItemGroup>
|
| 63 | + <PackageReference Include="DotNet.ReproducibleBuilds" Version="1.1.1"> |
| 64 | + <PrivateAssets>all</PrivateAssets> |
| 65 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
| 66 | + </PackageReference> |
43 | 67 | <PackageReference Include="MinVer" Version="4.3.0">
|
44 | 68 | <PrivateAssets>all</PrivateAssets>
|
45 | 69 | <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
0 commit comments