Skip to content

Commit

Permalink
Merge pull request #58 from Ali-YousefiTelori/develop
Browse files Browse the repository at this point in the history
Fix condition bug
  • Loading branch information
Ali-YousefiTelori authored Sep 12, 2023
2 parents aaddfef + 1be88f1 commit 009c99d
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<Platforms>AnyCPU;x64;x86</Platforms>
<Authors>EasyMicroservices</Authors>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>0.0.0.3</Version>
<Version>0.0.0.4</Version>
<Description>Serialize and deserialize wrapper</Description>
<Copyright>[email protected]</Copyright>
<PackageTags>Serialize,deserialize</PackageTags>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<Platforms>AnyCPU;x64;x86</Platforms>
<Authors>EasyMicroservices</Authors>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>0.0.0.2</Version>
<Version>0.0.0.3</Version>
<Description>Serialize and deserialize wrapper</Description>
<Copyright>[email protected]</Copyright>
<PackageTags>Serialize,deserialize</PackageTags>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<Platforms>AnyCPU;x64;x86</Platforms>
<Authors>EasyMicroservices</Authors>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>0.0.0.3</Version>
<Version>0.0.0.4</Version>
<Description>Serialize and deserialize wrapper</Description>
<Copyright>[email protected]</Copyright>
<PackageTags>Serialize,deserialize</PackageTags>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<Platforms>AnyCPU;x64;x86</Platforms>
<Authors>EasyMicroservices</Authors>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>0.0.0.3</Version>
<Version>0.0.0.4</Version>
<Description>Serilize and deserilize wrapper</Description>
<Copyright>[email protected]</Copyright>
<PackageTags>Serilize,deserilize</PackageTags>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<Platforms>AnyCPU;x64;x86</Platforms>
<Authors>EasyMicroservices</Authors>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>0.0.0.5</Version>
<Version>0.0.0.6</Version>
<Description>Serialize and deserialize wrapper</Description>
<Copyright>[email protected]</Copyright>
<PackageTags>Serialize,deserialize</PackageTags>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<Platforms>AnyCPU;x64;x86</Platforms>
<Authors>EasyMicroservices</Authors>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>0.0.0.6</Version>
<Version>0.0.0.7</Version>
<Description>Serialize and deserialize wrapper</Description>
<Copyright>[email protected]</Copyright>
<PackageTags>Serialize,deserialize</PackageTags>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<Platforms>AnyCPU;x64;x86</Platforms>
<Authors>EasyMicroservices</Authors>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>0.0.0.3</Version>
<Version>0.0.0.4</Version>
<Description>Serialize and deserialize wrapper</Description>
<Copyright>[email protected]</Copyright>
<PackageTags>Serialize,deserialize</PackageTags>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<Platforms>AnyCPU;x64;x86</Platforms>
<Authors>EasyMicroservices</Authors>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>0.0.0.3</Version>
<Version>0.0.0.4</Version>
<Description>Serialize and deserialize wrapper</Description>
<Copyright>[email protected]</Copyright>
<PackageTags>Serialize,deserialize</PackageTags>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<Platforms>AnyCPU;x64;x86</Platforms>
<Authors>EasyMicroservices</Authors>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>0.0.0.3</Version>
<Version>0.0.0.4</Version>
<Description>Serialize and deserialize wrapper</Description>
<Copyright>[email protected]</Copyright>
<PackageTags>Serialize,deserialize</PackageTags>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public static ITextSerializationProvider GetTextSerialization()
/// <exception cref="Exception"></exception>
public static IBinarySerializationProvider GetBinarySerialization()
{
if (_binarySerializationFunc != null)
if (_binarySerializationFunc == null)
throw new Exception("You did not set UseBinarySerialization.");
return _binarySerializationFunc();
}
Expand Down

0 comments on commit 009c99d

Please sign in to comment.