Skip to content

Commit

Permalink
update csproj
Browse files Browse the repository at this point in the history
  • Loading branch information
catcherwong committed Nov 18, 2020
1 parent 5e95d56 commit e5294b8
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 3 deletions.
3 changes: 3 additions & 0 deletions build/releasenotes.props
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,8 @@
<EasyCachingLiteDBPackageNotes>
1. Upgrading dependencies.
</EasyCachingLiteDBPackageNotes>
<EasyCachingSTJsonPackageNotes>
1. Init.
</EasyCachingSTJsonPackageNotes>
</PropertyGroup>
</Project>
1 change: 1 addition & 0 deletions build/version.props
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,6 @@
<EasyCachingDiskPackageVersion>1.1.0</EasyCachingDiskPackageVersion>
<EasyCachingMsExtPackageVersion>1.1.0</EasyCachingMsExtPackageVersion>
<EasyCachingLiteDBPackageVersion>1.1.0</EasyCachingLiteDBPackageVersion>
<EasyCachingSTJsonPackageVersion>1.1.0</EasyCachingSTJsonPackageVersion>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
@@ -1,15 +1,40 @@
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="../../build/version.props" />
<Import Project="../../build/releasenotes.props" />
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Authors>EasyCaching Contributors</Authors>
<VersionPrefix>$(EasyCachingSTJsonPackageVersion)</VersionPrefix>
<VersionSuffix></VersionSuffix>
<Description>
A serialize library based on System.Text.Json
</Description>
<PackageTags>Caching,Serialization,Json</PackageTags>
<PackageProjectUrl>https://github.com/dotnetcore/EasyCaching</PackageProjectUrl>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<RepositoryUrl>https://github.com/dotnetcore/EasyCaching</RepositoryUrl>
<ProjectUrl>https://github.com/dotnetcore/EasyCaching</ProjectUrl>
<PackageIcon>nuget-icon.png</PackageIcon>
<PackageReleaseNotes>
$(EasyCachingSTJsonPackageNotes)
</PackageReleaseNotes>
</PropertyGroup>

<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn>
</PropertyGroup>

<ItemGroup>
<None Include="../../LICENSE" Pack="true" Visible="false" PackagePath="" />
<None Include="../../media/nuget-icon.png" Pack="true" Visible="false" PackagePath="" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="System.Text.Json" Version="5.0.0" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\src\EasyCaching.Core\EasyCaching.Core.csproj" />
</ItemGroup>

</Project>

0 comments on commit e5294b8

Please sign in to comment.