Skip to content

Commit

Permalink
Setting version to 5.0.13
Browse files Browse the repository at this point in the history
  • Loading branch information
mbdavid committed Dec 8, 2022
1 parent 4382ff4 commit 32d9eb8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions LiteDB/Client/Mapper/BsonMapper.Deserialize.cs
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,7 @@ public object Deserialize(Type type, BsonValue value)

// avoid use of "System.Diagnostics.Process" in object type definition
// using String test to work in .netstandard 1.3
if (actualType.FullName.Equals("System.Diagnostics.Process", StringComparison.OrdinalIgnoreCase) &&
actualType.Assembly.GetName().Name.Equals("System", StringComparison.OrdinalIgnoreCase))
if (actualType.FullName.Equals("System.Diagnostics.Process", StringComparison.OrdinalIgnoreCase))
{
throw LiteException.AvoidUseOfProcess();
}
Expand Down
6 changes: 3 additions & 3 deletions LiteDB/LiteDB.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

<PropertyGroup>
<TargetFrameworks>net4.5;netstandard1.3;netstandard2.0</TargetFrameworks>
<AssemblyVersion>5.0.12</AssemblyVersion>
<FileVersion>5.0.12</FileVersion>
<VersionPrefix>5.0.12</VersionPrefix>
<AssemblyVersion>5.0.13</AssemblyVersion>
<FileVersion>5.0.13</FileVersion>
<VersionPrefix>5.0.13</VersionPrefix>
<Authors>Maurício David</Authors>
<Product>LiteDB</Product>
<Description>LiteDB - A lightweight embedded .NET NoSQL document store in a single datafile</Description>
Expand Down

0 comments on commit 32d9eb8

Please sign in to comment.