diff --git a/HotKeys2.E2ETest/HotKeysOnBrowserTest.cs b/HotKeys2.E2ETest/HotKeysOnBrowserTest.cs index 776b873..ab1abae 100644 --- a/HotKeys2.E2ETest/HotKeysOnBrowserTest.cs +++ b/HotKeys2.E2ETest/HotKeysOnBrowserTest.cs @@ -7,13 +7,16 @@ public class HotKeysOnBrowserTest public static IEnumerable AllHostingModels { get; } = new[] { HostingModel.Wasm60, HostingModel.Wasm70, + HostingModel.Wasm80, HostingModel.Server60, HostingModel.Server70, + HostingModel.Server80, }; public static IEnumerable WasmHostingModels { get; } = new[] { HostingModel.Wasm60, HostingModel.Wasm70, + HostingModel.Wasm80, }; [Test] diff --git a/HotKeys2.E2ETest/Internals/HostingModel.cs b/HotKeys2.E2ETest/Internals/HostingModel.cs index dcacb80..7b4df54 100644 --- a/HotKeys2.E2ETest/Internals/HostingModel.cs +++ b/HotKeys2.E2ETest/Internals/HostingModel.cs @@ -4,6 +4,8 @@ public enum HostingModel { Wasm60, Wasm70, + Wasm80, Server60, Server70, + Server80, } diff --git a/HotKeys2.E2ETest/Internals/TestContext.cs b/HotKeys2.E2ETest/Internals/TestContext.cs index 05ac533..2998047 100644 --- a/HotKeys2.E2ETest/Internals/TestContext.cs +++ b/HotKeys2.E2ETest/Internals/TestContext.cs @@ -12,8 +12,10 @@ public class TestContext private readonly IReadOnlyDictionary SampleSites = new Dictionary { { HostingModel.Wasm60, new SampleSite(5012, "Client", "net6.0") }, { HostingModel.Wasm70, new SampleSite(5013, "Client", "net7.0") }, + { HostingModel.Wasm80, new SampleSite(5014, "Client", "net8.0") }, { HostingModel.Server60, new SampleSite(5015, "Server", "net6.0") }, { HostingModel.Server70, new SampleSite(5016, "Server", "net7.0") }, + { HostingModel.Server80, new SampleSite(5017, "Server", "net8.0") }, }; private IPlaywright? _Playwrite; diff --git a/HotKeys2.E2ETest/Toolbelt.Blazor.HotKeys.E2ETest.csproj b/HotKeys2.E2ETest/Toolbelt.Blazor.HotKeys.E2ETest.csproj index 8f75767..2e42e13 100644 --- a/HotKeys2.E2ETest/Toolbelt.Blazor.HotKeys.E2ETest.csproj +++ b/HotKeys2.E2ETest/Toolbelt.Blazor.HotKeys.E2ETest.csproj @@ -1,7 +1,7 @@  - net7.0 + net8.0 false enable nullable diff --git a/HotKeys2/Toolbelt.Blazor.HotKeys2.csproj b/HotKeys2/Toolbelt.Blazor.HotKeys2.csproj index 22b574c..647de18 100644 --- a/HotKeys2/Toolbelt.Blazor.HotKeys2.csproj +++ b/HotKeys2/Toolbelt.Blazor.HotKeys2.csproj @@ -1,7 +1,7 @@  - net6.0;net7.0 + net6.0;net7.0;net8.0 Latest enable enable @@ -14,7 +14,7 @@ - 3.1.0-preview.1 + 3.1.0-preview.2 Copyright © 2022-2023 J.Sakamoto, Mozilla Public License 2.0 J.Sakamoto git @@ -51,6 +51,11 @@ + + + + + all diff --git a/SampleSites/Client/SampleSite.Client.csproj b/SampleSites/Client/SampleSite.Client.csproj index 4bed1be..0faec41 100644 --- a/SampleSites/Client/SampleSite.Client.csproj +++ b/SampleSites/Client/SampleSite.Client.csproj @@ -1,7 +1,7 @@  - net6.0;net7.0 + net6.0;net7.0;net8.0 true enable nullable @@ -9,8 +9,8 @@ - - + + @@ -23,6 +23,11 @@ + + + + + diff --git a/SampleSites/Components/SampleSite.Components.csproj b/SampleSites/Components/SampleSite.Components.csproj index 8fc060f..8887864 100644 --- a/SampleSites/Components/SampleSite.Components.csproj +++ b/SampleSites/Components/SampleSite.Components.csproj @@ -1,7 +1,7 @@  - net6.0;net7.0 + net6.0;net7.0;net8.0 enable nullable enable @@ -15,8 +15,12 @@ + + + + - + diff --git a/SampleSites/Server/SampleSite.Server.csproj b/SampleSites/Server/SampleSite.Server.csproj index 01bd095..d8c2d0e 100644 --- a/SampleSites/Server/SampleSite.Server.csproj +++ b/SampleSites/Server/SampleSite.Server.csproj @@ -1,7 +1,7 @@ - net6.0;net7.0 + net6.0;net7.0;net8.0 enable nullable enable