-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJsonPatchSupport.AspNetCore.csproj
More file actions
29 lines (24 loc) · 1.01 KB
/
JsonPatchSupport.AspNetCore.csproj
File metadata and controls
29 lines (24 loc) · 1.01 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net6.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageId>JsonPatchSupport.AspNetCore</PackageId>
<Version>1.0.1</Version>
<Authors>Ruyut</Authors>
<Company>Ruyut</Company>
<Product>JsonPatchSupport.AspNetCore</Product>
<RepositoryUrl>https://github.com/ruyut/JsonPatchSupport.AspNetCore.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.36" Condition="'$(TargetFramework)' == 'net6.0'" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.13" Condition="'$(TargetFramework)' == 'net8.0'" />
</ItemGroup>
<PropertyGroup>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include=".\README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>