-
Notifications
You must be signed in to change notification settings - Fork 135
/
GridShared.csproj
45 lines (38 loc) · 2.01 KB
/
GridShared.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
38
39
40
41
42
43
44
45
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
<LangVersion>11.0</LangVersion>
<Version>7.0.8</Version>
<Title>GridShared</Title>
<Description>Support library for GridBlazor and GridMvcCore component libraries</Description>
<Summary>Support library for GridBlazor and GridMvcCore component libraries</Summary>
<Authors>Gustau Navarro</Authors>
<PackageTags>grid blazor mvc table crud rest grpc</PackageTags>
<PackageProjectUrl>https://github.com/gustavnavar/Grid.Blazor</PackageProjectUrl>
<PackageLicenseExpression>LGPL-2.1-only</PackageLicenseExpression>
<PackageReleaseNotes>Supports .NET Standard 2.1, .NET 5.0, .NET 6.0, .NET 7.0, .NET 8.0</PackageReleaseNotes>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Microsoft.Extensions.Primitives" Version="8.0" />
<PackageReference Include="System.Text.Json" Version="8.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'">
<PackageReference Include="Microsoft.Extensions.Primitives" Version="7.0" />
<PackageReference Include="System.Text.Json" Version="7.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
<PackageReference Include="Microsoft.Extensions.Primitives" Version="6.0" />
<PackageReference Include="System.Text.Json" Version="6.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net5.0'">
<PackageReference Include="Microsoft.Extensions.Primitives" Version="5.0" />
<PackageReference Include="System.Text.Json" Version="5.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.1'">
<PackageReference Include="Microsoft.Extensions.Primitives" Version="3.1" />
<PackageReference Include="System.Text.Json" Version="4.7" />
</ItemGroup>
</Project>