Skip to content

Commit

Permalink
Fix connection name display.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Ivon committed May 1, 2021
1 parent aa121f1 commit c7edef2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Deploy/buildlpx.cmd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@set version=6.8.0
@set version=6.8.1
@set zip="%ProgramFiles%\7-Zip\7z.exe"
@set output="CsvLINQPadDriver.%version%.lpx6"

Expand Down
2 changes: 1 addition & 1 deletion Src/CsvLINQPadDriver/CsvDataContextDriver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ string GetFilesCountString() =>
parsedFilesCount switch
{
0 => $"({dateTime}, no files)",
1 => $" ({totalFilesSize}, {dateTime})",
1 => $" ({dateTime}, {totalFilesSize})",
_ => $" ({dateTime}, {"file".ToQuantity(parsedFilesCount)}, {totalFilesSize})"
};
}
Expand Down
6 changes: 3 additions & 3 deletions Src/CsvLINQPadDriver/CsvLINQPadDriver.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ Added allow comments option.
Added similar/total files sizes.
</PackageReleaseNotes>
<Copyright>Copyright © Martin Dobroucký 2013-2014, Ivan Ivon 2021</Copyright>
<AssemblyVersion>6.8.0.0</AssemblyVersion>
<FileVersion>6.8.0.0</FileVersion>
<Version>6.8.0</Version>
<AssemblyVersion>6.8.1.0</AssemblyVersion>
<FileVersion>6.8.1.0</FileVersion>
<Version>6.8.1</Version>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<ApplicationIcon>Connection.ico</ApplicationIcon>
</PropertyGroup>
Expand Down

0 comments on commit c7edef2

Please sign in to comment.