Skip to content

Commit e5294b8

Browse files
committed
update csproj
1 parent 5e95d56 commit e5294b8

File tree

3 files changed

+32
-3
lines changed

3 files changed

+32
-3
lines changed

build/releasenotes.props

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,8 @@
5555
<EasyCachingLiteDBPackageNotes>
5656
1. Upgrading dependencies.
5757
</EasyCachingLiteDBPackageNotes>
58+
<EasyCachingSTJsonPackageNotes>
59+
1. Init.
60+
</EasyCachingSTJsonPackageNotes>
5861
</PropertyGroup>
5962
</Project>

build/version.props

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,6 @@
1919
<EasyCachingDiskPackageVersion>1.1.0</EasyCachingDiskPackageVersion>
2020
<EasyCachingMsExtPackageVersion>1.1.0</EasyCachingMsExtPackageVersion>
2121
<EasyCachingLiteDBPackageVersion>1.1.0</EasyCachingLiteDBPackageVersion>
22+
<EasyCachingSTJsonPackageVersion>1.1.0</EasyCachingSTJsonPackageVersion>
2223
</PropertyGroup>
2324
</Project>
Lines changed: 28 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,40 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
2+
<Import Project="../../build/version.props" />
3+
<Import Project="../../build/releasenotes.props" />
34
<PropertyGroup>
45
<TargetFramework>netstandard2.0</TargetFramework>
6+
<Authors>EasyCaching Contributors</Authors>
7+
<VersionPrefix>$(EasyCachingSTJsonPackageVersion)</VersionPrefix>
8+
<VersionSuffix></VersionSuffix>
9+
<Description>
10+
A serialize library based on System.Text.Json
11+
</Description>
12+
<PackageTags>Caching,Serialization,Json</PackageTags>
13+
<PackageProjectUrl>https://github.com/dotnetcore/EasyCaching</PackageProjectUrl>
14+
<PackageLicenseFile>LICENSE</PackageLicenseFile>
15+
<RepositoryUrl>https://github.com/dotnetcore/EasyCaching</RepositoryUrl>
16+
<ProjectUrl>https://github.com/dotnetcore/EasyCaching</ProjectUrl>
17+
<PackageIcon>nuget-icon.png</PackageIcon>
18+
<PackageReleaseNotes>
19+
$(EasyCachingSTJsonPackageNotes)
20+
</PackageReleaseNotes>
21+
</PropertyGroup>
22+
23+
<PropertyGroup>
24+
<GenerateDocumentationFile>true</GenerateDocumentationFile>
25+
<NoWarn>$(NoWarn);1591</NoWarn>
526
</PropertyGroup>
627

728
<ItemGroup>
29+
<None Include="../../LICENSE" Pack="true" Visible="false" PackagePath="" />
30+
<None Include="../../media/nuget-icon.png" Pack="true" Visible="false" PackagePath="" />
31+
</ItemGroup>
32+
33+
<ItemGroup>
834
<PackageReference Include="System.Text.Json" Version="5.0.0" />
935
</ItemGroup>
10-
36+
1137
<ItemGroup>
1238
<ProjectReference Include="..\..\src\EasyCaching.Core\EasyCaching.Core.csproj" />
1339
</ItemGroup>
14-
1540
</Project>

0 commit comments

Comments
 (0)