diff --git a/.github/workflows/dotnetcore-maui.yml b/.github/workflows/dotnetcore-maui.yml
index 9c220338..6fed496c 100644
--- a/.github/workflows/dotnetcore-maui.yml
+++ b/.github/workflows/dotnetcore-maui.yml
@@ -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
diff --git a/.github/workflows/dotnetcore.yml b/.github/workflows/dotnetcore.yml
index 36cc0b18..2839e23d 100644
--- a/.github/workflows/dotnetcore.yml
+++ b/.github/workflows/dotnetcore.yml
@@ -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
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 87d601f4..5bf2152b 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -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
diff --git a/Blazor-ApexCharts.slnx b/Blazor-ApexCharts.slnx
new file mode 100644
index 00000000..02d8e910
--- /dev/null
+++ b/Blazor-ApexCharts.slnx
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
diff --git a/src/Blazor-ApexCharts/Blazor-ApexCharts.csproj b/src/Blazor-ApexCharts/Blazor-ApexCharts.csproj
index f72b632a..17d40a52 100644
--- a/src/Blazor-ApexCharts/Blazor-ApexCharts.csproj
+++ b/src/Blazor-ApexCharts/Blazor-ApexCharts.csproj
@@ -1,7 +1,7 @@
- net8.0;net9.0
+ net8.0;net9.0;net10.0
Joakim Dangården
@@ -30,6 +30,11 @@
+
+
+
+
+