diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 8593d24..367668b 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
env:
- PUBLISH_FOLDER: samples/BlazorWebAssembly/bin/Release/net7.0/publish/wwwroot
+ PUBLISH_FOLDER: samples/BlazorWebAssembly/bin/Release/net8.0/publish/wwwroot
name: Build and Deploy Job
steps:
@@ -19,11 +19,11 @@ jobs:
- uses: actions/setup-dotnet@v3
with:
- dotnet-version: '7.x'
+ dotnet-version: '8.x'
- name: Dotnet Publish
run:
- dotnet publish --configuration Release
+ dotnet publish --configuration Release --framework net8.0
- name: Change base-tag in index.html to repo name
run: sed -i 's///g' $GITHUB_WORKSPACE/$PUBLISH_FOLDER/index.html
diff --git a/BlazorCalendar/BlazorCalendar.csproj b/BlazorCalendar/BlazorCalendar.csproj
index 947b3fd..46de08a 100644
--- a/BlazorCalendar/BlazorCalendar.csproj
+++ b/BlazorCalendar/BlazorCalendar.csproj
@@ -1,7 +1,7 @@
- net6.0; net7.0
+ net6.0; net7.0; net8.0
enable
enable
True
@@ -27,11 +27,15 @@
-
+
-
+
+
+
+
+
diff --git a/samples/BlazorServer/BlazorServer.csproj b/samples/BlazorServer/BlazorServer.csproj
index 8f5417a..bd3f5e5 100644
--- a/samples/BlazorServer/BlazorServer.csproj
+++ b/samples/BlazorServer/BlazorServer.csproj
@@ -1,7 +1,7 @@
- net7.0
+ net6.0; net7.0; net8.0
10.0
enable
enable
diff --git a/samples/BlazorWebAssembly/BlazorWebAssembly.csproj b/samples/BlazorWebAssembly/BlazorWebAssembly.csproj
index 5ca0e00..d44deb0 100644
--- a/samples/BlazorWebAssembly/BlazorWebAssembly.csproj
+++ b/samples/BlazorWebAssembly/BlazorWebAssembly.csproj
@@ -1,15 +1,25 @@
- net7.0
+ net6.0; net7.0; net8.0
enable
enable
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+