Skip to content

Commit

Permalink
release 2.0.0-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
pofider committed Jun 27, 2018
1 parent 05bda0c commit 2173452
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jsreport.Shared/SerializerHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ private static void InnerSerializeConfiguration(object obj, IDictionary<string,
else
{
var key = property.GetCustomAttribute<DataMemberAttribute>().Name;
config[key] = value.ToString();
config[key] = value.GetType() == typeof (bool) ? value.ToString().ToLower() : value.ToString();
}
}
}
Expand Down
4 changes: 3 additions & 1 deletion jsreport.Shared/jsreport.Shared.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFrameworks>netstandard1.6;net45</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>1.0.1</Version>
<Version>2.0.0-beta</Version>
<Authors>Jan Blaha</Authors>
<Company>jsreport</Company>
<Product>jsreport</Product>
Expand All @@ -17,6 +17,8 @@
<PackageTags>jsreport</PackageTags>
<PackageReleaseNotes>Release notes are at https://github.com/jsreport/jsreport-dotnet-shared/releases</PackageReleaseNotes>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<FileVersion>2.0.0.0</FileVersion>
</PropertyGroup>

<Choose>
Expand Down

0 comments on commit 2173452

Please sign in to comment.