Fixed a bug with boolean default values. Bumped package version to 1.5.8.
This commit is contained in:
parent
a630f0e334
commit
22ff3c1312
@ -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>
|
||||
|
@ -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();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user