Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
vvenegasv committed Mar 11, 2017
2 parents 5f37025 + e09c624 commit 1c0e31e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// Puede especificar todos los valores o establecer como predeterminados los números de compilación y de revisión
// mediante el carácter '*', como se muestra a continuación:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.3.4.0")]
[assembly: AssemblyFileVersion("1.3.4.0")]
[assembly: AssemblyVersion("1.3.5.0")]
[assembly: AssemblyFileVersion("1.3.5.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -212,9 +212,9 @@ private bool TryGetNumber(ICell cell, out double returnValue)
returnValue = cell.NumericCellValue;
return true;
case CellType.String:
return double.TryParse(cell.StringCellValue, out returnValue);
return double.TryParse(cell.StringCellValue.Trim(), out returnValue);
case CellType.Unknown:
return double.TryParse(cell.StringCellValue, out returnValue);
return double.TryParse(cell.StringCellValue.Trim(), out returnValue);
default:
return false;
}
Expand Down Expand Up @@ -306,9 +306,9 @@ private bool TryGetBool(ICell cell, out bool returnValue)
else
return false;
case CellType.String:
return bool.TryParse(cell.StringCellValue, out returnValue);
return bool.TryParse(cell.StringCellValue.Trim(), out returnValue);
case CellType.Unknown:
return bool.TryParse(cell.StringCellValue, out returnValue);
return bool.TryParse(cell.StringCellValue.Trim(), out returnValue);
default:
return false;
}
Expand Down Expand Up @@ -347,9 +347,9 @@ private bool TryGetDate(ICell cell, out DateTime returnValue)
case CellType.Numeric:
return DateTime.TryParse(cell.NumericCellValue.ToString(), out returnValue);
case CellType.String:
return DateTime.TryParse(cell.StringCellValue.ToString(), out returnValue);
return DateTime.TryParse(cell.StringCellValue.Trim(), out returnValue);
case CellType.Unknown:
return DateTime.TryParse(cell.StringCellValue.ToString(), out returnValue);
return DateTime.TryParse(cell.StringCellValue.Trim(), out returnValue);
default:
return false;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// Puede especificar todos los valores o establecer como predeterminados los números de compilación y de revisión
// mediante el carácter '*', como se muestra a continuación:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.3.4.*")]
[assembly: AssemblyFileVersion("1.3.4.0")]
[assembly: AssemblyVersion("1.3.5.*")]
[assembly: AssemblyFileVersion("1.3.5.0")]
Binary file not shown.

0 comments on commit 1c0e31e

Please sign in to comment.