Fixed a bug with boolean default values. Bumped package version to 1.5.8.

This commit is contained in:
MattMo 2023-05-29 07:08:30 -07:00
parent a630f0e334
commit 22ff3c1312
2 changed files with 3 additions and 1 deletions

View File

@ -17,7 +17,7 @@
<AssemblyName>MontoyaTech.Rest.Net</AssemblyName>
<RootNamespace>MontoyaTech.Rest.Net</RootNamespace>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<Version>1.5.7</Version>
<Version>1.5.8</Version>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageIcon>Logo_Symbol_Black_Outline.png</PackageIcon>
</PropertyGroup>

View File

@ -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();
}