Skip to content

Commit

Permalink
20222-Null-handling
Browse files Browse the repository at this point in the history
  • Loading branch information
DWDBE committed Jun 27, 2024
1 parent 7c95a4b commit 6551c42
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/Dynamicweb.DataIntegration.Providers.ExcelProvider.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>10.4.1</Version>
<Version>10.6.0</Version>
<AssemblyVersion>1.0.0</AssemblyVersion>
<Title>Excel Provider</Title>
<Description>Excel Provider</Description>
Expand All @@ -23,8 +23,8 @@
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Dynamicweb.DataIntegration" Version="10.4.0" />
<PackageReference Include="Dynamicweb.Ecommerce" Version="10.4.0" />
<PackageReference Include="Dynamicweb.DataIntegration" Version="10.6.2" />
<PackageReference Include="Dynamicweb.Ecommerce" Version="10.6.2" />
<PackageReference Include="EPPlus" Version="5.6.3" />
<PackageReference Include="Microsoft.IO.RecyclableMemoryStream" Version="1.4.1" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
Expand Down
6 changes: 4 additions & 2 deletions src/ExcelProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -223,8 +223,10 @@ public override bool RunJob(Job job)
while (!sourceReader.IsDone())
{
sourceRow = sourceReader.GetNext();
ProcessInputRow(mapping, sourceRow);
destinationWriter.Write(sourceRow);
if (ProcessInputRow(sourceRow, mapping))
{
destinationWriter.Write(sourceRow);
}
}
destinationWriter.AddTableToSet();
}
Expand Down

0 comments on commit 6551c42

Please sign in to comment.