From ccdbf05aa28b6a9e410b7fe6561471f91fdc9886 Mon Sep 17 00:00:00 2001 From: xantari Date: Tue, 14 Nov 2023 18:23:19 -0600 Subject: [PATCH 1/4] Fix bug #325 (#326) --- Source/ZoomNet/Models/Registrant.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/ZoomNet/Models/Registrant.cs b/Source/ZoomNet/Models/Registrant.cs index 1f770456..10091bce 100644 --- a/Source/ZoomNet/Models/Registrant.cs +++ b/Source/ZoomNet/Models/Registrant.cs @@ -130,7 +130,7 @@ public class Registrant /// Gets or sets the date and time when the registrant was created. /// /// The registrant created time. - [JsonPropertyName("created_time")] + [JsonPropertyName("create_time")] public DateTime CreatedOn { get; set; } /// From b64230edb6b455296595cc65e0af11695ff253ea Mon Sep 17 00:00:00 2001 From: jericho Date: Tue, 14 Nov 2023 19:26:51 -0500 Subject: [PATCH 2/4] Refresh resource files --- .config/dotnet-tools.json | 2 +- build.cake | 6 +++--- global.json | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 8f3a4382..c33ff7cb 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "cake.tool": { - "version": "3.1.0", + "version": "3.2.0", "commands": [ "dotnet-cake" ] diff --git a/build.cake b/build.cake index cf74106c..2f01555b 100644 --- a/build.cake +++ b/build.cake @@ -1,9 +1,9 @@ // Install tools. #tool dotnet:?package=GitVersion.Tool&version=5.12.0 #tool dotnet:?package=coveralls.net&version=4.0.1 -#tool nuget:?package=GitReleaseManager&version=0.15.0 -#tool nuget:?package=ReportGenerator&version=5.1.26 -#tool nuget:?package=xunit.runner.console&version=2.6.0 +#tool nuget:?package=GitReleaseManager&version=0.16.0 +#tool nuget:?package=ReportGenerator&version=5.2.0 +#tool nuget:?package=xunit.runner.console&version=2.6.1 #tool nuget:?package=CodecovUploader&version=0.7.1 // Install addins. diff --git a/global.json b/global.json index 2f1e8232..2cc47418 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "7.0.403", + "version": "7.0.404", "rollForward": "patch", "allowPrerelease": false } From 9083018c8c046ccf9fe8f2542deefceb9f04431d Mon Sep 17 00:00:00 2001 From: jericho Date: Tue, 14 Nov 2023 19:37:47 -0500 Subject: [PATCH 3/4] Switch to .NET SDK 8.0 --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.json b/global.json index 2cc47418..8e621cac 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "7.0.404", + "version": "8.0.100", "rollForward": "patch", "allowPrerelease": false } From 833c6e4224bd6b324172f91c8a42f1f733fddc1a Mon Sep 17 00:00:00 2001 From: jericho Date: Sat, 18 Nov 2023 14:31:22 -0500 Subject: [PATCH 4/4] Roll back to .NET SDK 7 because it causes build to fail on AppVeyor --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.json b/global.json index 8e621cac..2cc47418 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.100", + "version": "7.0.404", "rollForward": "patch", "allowPrerelease": false }