Skip to content

Commit

Permalink
Update Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Ali-YousefiTelori committed Sep 18, 2023
1 parent 8817e43 commit 4c24596
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Platforms>AnyCPU;x64;x86</Platforms>
<Authors>EasyMicroservices</Authors>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>0.0.0.4</Version>
<Version>0.0.0.5</Version>
<Description>Map objects.</Description>
<Copyright>[email protected]</Copyright>
<PackageTags>map,mapper,clone,coppy</PackageTags>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,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>Map objects.</Description>
<Copyright>[email protected]</Copyright>
<PackageTags>map,mapper,clone,coppy</PackageTags>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,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>Map objects.</Description>
<Copyright>[email protected]</Copyright>
<PackageTags>map,mapper,clone,coppy</PackageTags>
Expand All @@ -16,7 +16,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="EasyMicroservices.Serialization" Version="0.0.0.2" />
<PackageReference Include="EasyMicroservices.Serialization" Version="0.0.0.4" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ namespace EasyMicroservices.Mapper.SerializerMapper.Providers
/// </summary>
public class SerializerMapperProvider : BaseMapperProvider
{
private readonly ITextSerialization _textSerialization;
private readonly IBinarySerialization _binarySerialization;
private readonly ITextSerializationProvider _textSerialization;
private readonly IBinarySerializationProvider _binarySerialization;
/// <summary>
///
/// </summary>
/// <param name="textSerialization"></param>
public SerializerMapperProvider(ITextSerialization textSerialization)
public SerializerMapperProvider(ITextSerializationProvider textSerialization)
{
if (textSerialization == null)
throw new ArgumentNullException(nameof(textSerialization));
Expand All @@ -26,7 +26,7 @@ public SerializerMapperProvider(ITextSerialization textSerialization)
///
/// </summary>
/// <param name="binarySerialization"></param>
public SerializerMapperProvider(IBinarySerialization binarySerialization)
public SerializerMapperProvider(IBinarySerializationProvider binarySerialization)
{
if (binarySerialization == null)
throw new ArgumentNullException(nameof(binarySerialization));
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;net6.0;net5.0</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1;net6.0;net7.0</TargetFrameworks>
<IsPackable>false</IsPackable>
<LangVersion>latest</LangVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="EasyMicroservices.Serialization.BinaryGo" Version="0.0.0.1" />
<PackageReference Include="EasyMicroservices.Serialization.Newtonsoft.Json" Version="0.0.0.3" />
<PackageReference Include="EasyMicroservices.Serialization.System.Text.Json" Version="0.0.0.4" />
<PackageReference Include="EasyMicroservices.Tests" Version="0.0.0.3" />
<PackageReference Include="EasyMicroservices.Serialization.BinaryGo" Version="0.0.0.4" />
<PackageReference Include="EasyMicroservices.Serialization.Newtonsoft.Json" Version="0.0.0.6" />
<PackageReference Include="EasyMicroservices.Serialization.System.Text.Json" Version="0.0.0.7" />
<PackageReference Include="EasyMicroservices.Tests" Version="0.0.0.7" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
<PackageReference Include="xunit.assert" Version="2.5.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Platforms>AnyCPU;x64;x86</Platforms>
<Authors>EasyMicroservices</Authors>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>0.0.0.4</Version>
<Version>0.0.0.5</Version>
<Description>Map objects.</Description>
<Copyright>[email protected]</Copyright>
<PackageTags>map,mapper,clone,coppy</PackageTags>
Expand Down

0 comments on commit 4c24596

Please sign in to comment.