-
Notifications
You must be signed in to change notification settings - Fork 327
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5e95d56
commit e5294b8
Showing
3 changed files
with
32 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 28 additions & 3 deletions
31
.../EasyCaching.Serialization.SystemTextJson/EasyCaching.Serialization.SystemTextJson.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |