diff --git a/.github/workflows/master_meetup-planner(dev).yml b/.github/workflows/master_meetup-planner(dev).yml index ba4cb08..f791c3f 100644 --- a/.github/workflows/master_meetup-planner(dev).yml +++ b/.github/workflows/master_meetup-planner(dev).yml @@ -24,7 +24,7 @@ jobs: - name: Set up .NET Core uses: actions/setup-dotnet@v2 with: - dotnet-version: '7.0.x' + dotnet-version: '8.0.x' - name: Build with dotnet run: dotnet build --configuration Release diff --git a/.github/workflows/master_meetup_functions(dev).yml b/.github/workflows/master_meetup_functions(dev).yml index ccc335e..baf3791 100644 --- a/.github/workflows/master_meetup_functions(dev).yml +++ b/.github/workflows/master_meetup_functions(dev).yml @@ -24,7 +24,7 @@ jobs: - name: Setup DotNet Environment uses: actions/setup-dotnet@v2 with: - dotnet-version: '6.0.x' + dotnet-version: '8.0.x' - name: 'Resolve Project Dependencies Using Dotnet' shell: pwsh diff --git a/MeetUpFunctions/Constants.cs b/MeetUpFunctions/Constants.cs index cbf5323..f7c4380 100644 --- a/MeetUpFunctions/Constants.cs +++ b/MeetUpFunctions/Constants.cs @@ -22,7 +22,7 @@ public static class Constants public const string DEFAULT_DISCLAIMER = "Disclaimer"; public const string DEFAULT_GUEST_DISCLAIMER = "Guest Disclaimer"; - public const string VERSION = "2024-11-28"; + public const string VERSION = "2024-11-19"; public const int ADMINOVERBOOKFACTOR = 1; // no overbooking any more, because not needed public const int LOG_TTL = 30 * 24 * 3600; // 30 days TTL for Log items diff --git a/MeetUpFunctions/MeetUpPlanner.Functions.csproj b/MeetUpFunctions/MeetUpPlanner.Functions.csproj index 5942071..c8e2297 100644 --- a/MeetUpFunctions/MeetUpPlanner.Functions.csproj +++ b/MeetUpFunctions/MeetUpPlanner.Functions.csproj @@ -1,21 +1,22 @@  - net6.0 + net8.0 v4 43fef60c-ead0-476a-956f-0c7a3c479b26 - - + + - - - - + + + + + - + diff --git a/MeetUpPlanner/Client/MeetUpPlanner.Client.csproj b/MeetUpPlanner/Client/MeetUpPlanner.Client.csproj index 45dc499..16f62a9 100644 --- a/MeetUpPlanner/Client/MeetUpPlanner.Client.csproj +++ b/MeetUpPlanner/Client/MeetUpPlanner.Client.csproj @@ -1,10 +1,8 @@  - - net7.0 + net8.0 service-worker-assets.js - @@ -12,18 +10,16 @@ - - - - - + + + + + - - - + \ No newline at end of file diff --git a/MeetUpPlanner/Client/Pages/About.razor b/MeetUpPlanner/Client/Pages/About.razor index ad1b31d..28f26f1 100644 --- a/MeetUpPlanner/Client/Pages/About.razor +++ b/MeetUpPlanner/Client/Pages/About.razor @@ -52,7 +52,7 @@ @code { - private const string clientVersion = "2024-11-18"; + private const string clientVersion = "2024-11-19"; private string serverVersion = "tbd"; private string functionsVersion = "tbd"; diff --git a/MeetUpPlanner/Server/Controllers/UtilController.cs b/MeetUpPlanner/Server/Controllers/UtilController.cs index 3c5d594..51751b2 100644 --- a/MeetUpPlanner/Server/Controllers/UtilController.cs +++ b/MeetUpPlanner/Server/Controllers/UtilController.cs @@ -20,7 +20,7 @@ public class UtilController : ControllerBase { private readonly MeetUpFunctions _meetUpFunctions; private readonly ILogger logger; - const string serverVersion = "2024-11-18"; + const string serverVersion = "2024-11-19"; string functionsVersion = "tbd"; public UtilController(ILogger logger, MeetUpFunctions meetUpFunctions) diff --git a/MeetUpPlanner/Server/MeetUpPlanner.Server.csproj b/MeetUpPlanner/Server/MeetUpPlanner.Server.csproj index d5bb2c8..f5d1b4f 100644 --- a/MeetUpPlanner/Server/MeetUpPlanner.Server.csproj +++ b/MeetUpPlanner/Server/MeetUpPlanner.Server.csproj @@ -1,23 +1,18 @@  - - net7.0 + net8.0 a684ad94-186b-47a8-9fed-cadc79d479f0 - - - + + - - - - + \ No newline at end of file diff --git a/MeetUpPlanner/Shared/MeetUpPlanner.Shared.csproj b/MeetUpPlanner/Shared/MeetUpPlanner.Shared.csproj index a03ca61..ba2bcf0 100644 --- a/MeetUpPlanner/Shared/MeetUpPlanner.Shared.csproj +++ b/MeetUpPlanner/Shared/MeetUpPlanner.Shared.csproj @@ -1,12 +1,9 @@  - - net6.0 + net8.0 - - + - - + \ No newline at end of file