Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/dotnetcore-maui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:
- name: Setup dotnet ${{ matrix.dotnet-version }}.0.x
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}.0.x
dotnet-version: |
10.0.x
${{ matrix.dotnet-version }}.0.x
- name: Install dependencies
run: |
dotnet workload install maui
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/dotnetcore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,16 @@ jobs:
runs-on: windows-2022
strategy:
matrix:
dotnet-version: [8, 9]
dotnet-version: [8, 9, 10]

steps:
- uses: actions/checkout@v2
- name: Setup dotnet ${{ matrix.dotnet-version }}.0.x
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet-version }}.0.x
dotnet-version: |
10.0.x
${{ matrix.dotnet-version }}.0.x
- name: Install dependencies
run: dotnet restore
working-directory: ./src/Blazor-ApexCharts
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
dotnet-version: |
8.0.x
9.0.x
10.0.x

- name: Dotnet Pack
working-directory: ./src/Blazor-ApexCharts
Expand Down
9 changes: 9 additions & 0 deletions Blazor-ApexCharts.slnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<Solution>
<Folder Name="/Docs/">
<Project Path="docs/BlazorApexCharts.Docs.Server/BlazorApexCharts.Docs.Server.csproj" />
<Project Path="docs/BlazorApexCharts.Docs.Wasm/BlazorApexCharts.Docs.Wasm.csproj" />
<Project Path="docs/BlazorApexCharts.Docs/BlazorApexCharts.Docs.csproj" />
</Folder>
<Project Path="src/Blazor-ApexCharts-MAUI/Blazor-ApexCharts-MAUI.csproj" />
<Project Path="src/Blazor-ApexCharts/Blazor-ApexCharts.csproj" />
</Solution>
7 changes: 6 additions & 1 deletion src/Blazor-ApexCharts/Blazor-ApexCharts.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>

<Authors>Joakim Dangården</Authors>
<Company />
Expand Down Expand Up @@ -30,6 +30,11 @@
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="9.0.2" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net10.0'">
<PackageReference Include="Microsoft.Extensions.Http" Version="10.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components" Version="10.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="10.0.0" />
</ItemGroup>

<ItemGroup>
<None Include="..\..\LICENSE">
Expand Down