-
Notifications
You must be signed in to change notification settings - Fork 337
Expand file tree
/
Copy pathEasyCaching.Serialization.SystemTextJson.csproj
More file actions
40 lines (36 loc) · 1.49 KB
/
EasyCaching.Serialization.SystemTextJson.csproj
File metadata and controls
40 lines (36 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="../../build/version.props" />
<Import Project="../../build/releasenotes.props" />
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
<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 Condition="'$(TargetFramework)'== 'netStandard2.0'">
<PackageReference Include="System.Text.Json" Version="8.0.4" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\EasyCaching.Core\EasyCaching.Core.csproj" />
</ItemGroup>
</Project>