From 22ff3c13120af8089326e1af49da8f9f5fe2ac07 Mon Sep 17 00:00:00 2001 From: MattMo Date: Mon, 29 May 2023 07:08:30 -0700 Subject: [PATCH] Fixed a bug with boolean default values. Bumped package version to 1.5.8. --- Rest.Net/Rest.Net.csproj | 2 +- Rest.Net/RestClientGenerator.cs | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Rest.Net/Rest.Net.csproj b/Rest.Net/Rest.Net.csproj index 4c96c49..0cab141 100644 --- a/Rest.Net/Rest.Net.csproj +++ b/Rest.Net/Rest.Net.csproj @@ -17,7 +17,7 @@ MontoyaTech.Rest.Net MontoyaTech.Rest.Net True - 1.5.7 + 1.5.8 Logo_Symbol_Black_Outline.png diff --git a/Rest.Net/RestClientGenerator.cs b/Rest.Net/RestClientGenerator.cs index 22b54a1..d9e73b3 100644 --- a/Rest.Net/RestClientGenerator.cs +++ b/Rest.Net/RestClientGenerator.cs @@ -357,6 +357,8 @@ namespace MontoyaTech.Rest.Net return "null"; else if (typeCode == TypeCode.Char) return "'\\0'"; + else if (typeCode == TypeCode.Boolean) + return "false"; else return Activator.CreateInstance(type).ToString(); }