Skip to content

Commit

Permalink
Fixed bug in CsvAdapter. It didn't skip non-existing columns for fiel…
Browse files Browse the repository at this point in the history
…ds (only for actions).
  • Loading branch information
spaghettidba committed Feb 13, 2018
1 parent ed248cb commit 4fd8800
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions XESmartTarget.Core/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.7.0")]
[assembly: AssemblyFileVersion("1.0.7.0")]
[assembly: AssemblyVersion("1.0.8.0")]
[assembly: AssemblyFileVersion("1.0.8.0")]
2 changes: 2 additions & 0 deletions XESmartTarget.Core/Utils/XELFileCSVAdapter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ public void Convert()
PublishedEventField theValue = null;
if (xevent.Fields.TryGetValue(col.Name, out theValue))
csv.WriteField(theValue.Value);
else
csv.WriteField("");
}
else
{
Expand Down
4 changes: 2 additions & 2 deletions XESmartTarget/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.7.0")]
[assembly: AssemblyFileVersion("1.0.7.0")]
[assembly: AssemblyVersion("1.0.8.0")]
[assembly: AssemblyFileVersion("1.0.8.0")]
4 changes: 2 additions & 2 deletions XelToCsv/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.7.0")]
[assembly: AssemblyFileVersion("1.0.7.0")]
[assembly: AssemblyVersion("1.0.8.0")]
[assembly: AssemblyFileVersion("1.0.8.0")]

0 comments on commit 4fd8800

Please sign in to comment.