Skip to content

Commit

Permalink
fix(v0.3.1): Print cpature-device friendly name
Browse files Browse the repository at this point in the history
  • Loading branch information
densogiaichned committed Jul 11, 2024
1 parent 851a0b1 commit b328eb7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/dsian.TcPnScanner.CLI/CaptureDevices.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ private static string PrintDeviceList(LibPcapLiveDeviceList devices)
int i = 0;
foreach (var dev in devices)
{
sb.AppendLine($"{i}) {dev.Name} {dev.Description}");
sb.AppendLine($"{i}) {dev.Interface.Name} {dev.Interface.FriendlyName}");
i++;
}
sb.AppendLine();
Expand Down
2 changes: 1 addition & 1 deletion src/dsian.TcPnScanner.CLI/dsian.TcPnScanner.CLI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<Description>Scans a PROFINET and adds all Stations to a PROFINET IO Device (TF6270)</Description>
<Copyright>Copyright (c) 2023 densogiaichned</Copyright>
<Title>TwinCAT Profinet Device Scanner</Title>
<Version>0.3.0</Version>
<Version>0.3.1</Version>
<AssemblyVersion>$(Version)</AssemblyVersion>
<FileVersion>$(Version)</FileVersion>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
Expand Down

0 comments on commit b328eb7

Please sign in to comment.