-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathInterfaceConverter.csproj
37 lines (32 loc) · 1.57 KB
/
InterfaceConverter.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net7.0;net8.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Authors>Václav Pekárek</Authors>
<PackageId>InterfaceConverter.SystemTextJson</PackageId>
<PackageTags>json;system.text.json;serialization;deserialization;converter</PackageTags>
<Description>System.Text.Json extension for serialization and deserialization of interfaces.</Description>
<PackageReadmeFile>readme.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/vpekarek/InterfaceConverter.SystemTextJson</PackageProjectUrl>
<RepositoryUrl>https://github.com/vpekarek/InterfaceConverter.SystemTextJson</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<NeutralLanguage>en</NeutralLanguage>
<PackageVersion>1.3.2</PackageVersion>
<PackageReleaseNotes>Added package icon.</PackageReleaseNotes>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<None Include="readme.md" Pack="true" PackagePath="\" />
<None Include="icon.png" Pack="true" PackagePath="\"/>
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="System.Text.Json" Version="[6.0.0,)" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.1'">
<PackageReference Include="System.Text.Json" Version="[6.0.0,)" />
</ItemGroup>
</Project>