-
Notifications
You must be signed in to change notification settings - Fork 134
/
GridShared.csproj
50 lines (42 loc) · 2.24 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
46
47
48
49
50
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.1;net5.0;net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
<LangVersion>11.0</LangVersion>
<Version>8.0.1</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, .NET 9.0</PackageReleaseNotes>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
<PackageReference Include="Microsoft.Extensions.Primitives" Version="9.0" />
<PackageReference Include="System.Text.Json" Version="9.0" />
</ItemGroup>
<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>