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>
|
<AssemblyName>MontoyaTech.Rest.Net</AssemblyName>
|
||||||
<RootNamespace>MontoyaTech.Rest.Net</RootNamespace>
|
<RootNamespace>MontoyaTech.Rest.Net</RootNamespace>
|
||||||
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
||||||
<Version>1.5.7</Version>
|
<Version>1.5.8</Version>
|
||||||
<PackageReleaseNotes></PackageReleaseNotes>
|
<PackageReleaseNotes></PackageReleaseNotes>
|
||||||
<PackageIcon>Logo_Symbol_Black_Outline.png</PackageIcon>
|
<PackageIcon>Logo_Symbol_Black_Outline.png</PackageIcon>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
@ -357,6 +357,8 @@ namespace MontoyaTech.Rest.Net
|
|||||||
return "null";
|
return "null";
|
||||||
else if (typeCode == TypeCode.Char)
|
else if (typeCode == TypeCode.Char)
|
||||||
return "'\\0'";
|
return "'\\0'";
|
||||||
|
else if (typeCode == TypeCode.Boolean)
|
||||||
|
return "false";
|
||||||
else
|
else
|
||||||
return Activator.CreateInstance(type).ToString();
|
return Activator.CreateInstance(type).ToString();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user