|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk.Razor"> |
2 | 2 |
|
3 | | - <PropertyGroup> |
4 | | - <TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks> |
5 | | - |
6 | | - <Authors>Joakim Dangården</Authors> |
7 | | - <Company /> |
8 | | - <Description>A blazor wrapper for ApexCharts.js</Description> |
9 | | - <PackageId>Blazor-ApexCharts</PackageId> |
10 | | - <PackageTags>Blazor Charts ApexCharts Server WebAssembly</PackageTags> |
11 | | - <RepositoryUrl>https://github.com/apexcharts/Blazor-ApexCharts</RepositoryUrl> |
12 | | - <RepositoryType>git</RepositoryType> |
13 | | - <PackageProjectUrl>https://apexcharts.github.io/Blazor-ApexCharts/</PackageProjectUrl> |
14 | | - <PackageLicenseExpression>MIT</PackageLicenseExpression> |
15 | | - <PackageReadmeFile>README.md</PackageReadmeFile> |
16 | | - <Copyright>Copyright 2022 (c) Joakim Dangården. All rights reserved.</Copyright> |
17 | | - <GenerateDocumentationFile>true</GenerateDocumentationFile> |
18 | | - <PackageIcon>apexchart_logo.png</PackageIcon> |
19 | | - </PropertyGroup> |
20 | | - |
21 | | - <ItemGroup Condition="'$(TargetFramework)' == 'net6.0'"> |
22 | | - <PackageReference Include="Microsoft.AspNetCore.Components" Version="6.0.25" /> |
23 | | - <PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="6.0.25" /> |
24 | | - </ItemGroup> |
25 | | - <ItemGroup Condition="'$(TargetFramework)' == 'net7.0'"> |
26 | | - <PackageReference Include="Microsoft.AspNetCore.Components" Version="7.0.14" /> |
27 | | - <PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="7.0.14" /> |
28 | | - </ItemGroup> |
29 | | - <ItemGroup Condition="'$(TargetFramework)' == 'net8.0'"> |
30 | | - <PackageReference Include="Microsoft.AspNetCore.Components" Version="8.0.10" /> |
31 | | - <PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.10" /> |
32 | | - </ItemGroup> |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks> |
| 5 | + |
| 6 | + <Authors>Joakim Dangården</Authors> |
| 7 | + <Company /> |
| 8 | + <Description>A blazor wrapper for ApexCharts.js</Description> |
| 9 | + <PackageId>Blazor-ApexCharts</PackageId> |
| 10 | + <PackageTags>Blazor Charts ApexCharts Server WebAssembly</PackageTags> |
| 11 | + <RepositoryUrl>https://github.com/apexcharts/Blazor-ApexCharts</RepositoryUrl> |
| 12 | + <RepositoryType>git</RepositoryType> |
| 13 | + <PackageProjectUrl>https://apexcharts.github.io/Blazor-ApexCharts/</PackageProjectUrl> |
| 14 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 15 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 16 | + <Copyright>Copyright 2022 (c) Joakim Dangården. All rights reserved.</Copyright> |
| 17 | + <GenerateDocumentationFile>true</GenerateDocumentationFile> |
| 18 | + <PackageIcon>apexchart_logo.png</PackageIcon> |
| 19 | + </PropertyGroup> |
| 20 | + |
| 21 | + <ItemGroup Condition="'$(TargetFramework)' == 'net6.0'"> |
| 22 | + <PackageReference Include="Microsoft.Extensions.Http" Version="6.0.1" /> |
| 23 | + <PackageReference Include="Microsoft.AspNetCore.Components" Version="6.0.25" /> |
| 24 | + <PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="6.0.25" /> |
| 25 | + </ItemGroup> |
| 26 | + <ItemGroup Condition="'$(TargetFramework)' == 'net7.0'"> |
| 27 | + <PackageReference Include="Microsoft.Extensions.Http" Version="7.0.0" /> |
| 28 | + <PackageReference Include="Microsoft.AspNetCore.Components" Version="7.0.14" /> |
| 29 | + <PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="7.0.14" /> |
| 30 | + </ItemGroup> |
| 31 | + <ItemGroup Condition="'$(TargetFramework)' == 'net8.0'"> |
| 32 | + <PackageReference Include="Microsoft.Extensions.Http" Version="8.0.1" /> |
| 33 | + <PackageReference Include="Microsoft.AspNetCore.Components" Version="8.0.10" /> |
| 34 | + <PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.10" /> |
| 35 | + </ItemGroup> |
33 | 36 |
|
34 | 37 | <ItemGroup> |
35 | 38 | <None Include="..\..\LICENSE"> |
|
46 | 49 | </None> |
47 | 50 | </ItemGroup> |
48 | 51 |
|
49 | | - <ItemGroup> |
50 | | - <PackageReference Include="Microsoft.Extensions.Http" Version="8.0.1" /> |
51 | | - </ItemGroup> |
52 | | - |
53 | | - |
54 | 52 |
|
55 | | - <PropertyGroup> |
56 | | - <DocumentationFile>$(ProjectDir)Blazor-ApexCharts.xml</DocumentationFile> |
57 | | - </PropertyGroup> |
| 53 | + <PropertyGroup> |
| 54 | + <DocumentationFile>$(ProjectDir)Blazor-ApexCharts.xml</DocumentationFile> |
| 55 | + </PropertyGroup> |
58 | 56 |
|
59 | 57 | </Project> |
0 commit comments