Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -85,14 +85,14 @@ public class TestConnectionCommand : PSCmdlet
/// <summary>
/// The number of times the Ping data packets can be forwarded by routers.
/// As gateways and routers transmit packets through a network,
/// they decrement the CurrentMTUSize Time-to-Live (TTL) value found in the packet header.
/// they decrement the Time-to-Live (TTL) value found in the packet header.
/// The default (from Windows) is 128 hops.
/// </summary>
[Parameter(ParameterSetName = ParameterSetPingCount)]
[Parameter(ParameterSetName = ParameterSetPingContinues)]
[Parameter(ParameterSetName = ParameterSetTraceRoute)]
[ValidateRange(0, sMaxHops)]
[Alias("Ttl")]
[Alias("Ttl", "TimeToLive", "Hops")]
public int MaxHops { get; set; } = sMaxHops;

private const int sMaxHops = 128;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="2.9.0" />
<PackageReference Include="NJsonSchema" Version="9.10.75" />
<PackageReference Include="NJsonSchema" Version="9.11.0" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<ItemGroup>
<!-- Source: https://github.com/lunet-io/markdig/ -->
<ProjectReference Include="../System.Management.Automation/System.Management.Automation.csproj" />
<PackageReference Include="Markdig.Signed" Version="0.15.2" />
<PackageReference Include="Markdig.Signed" Version="0.15.3" />
</ItemGroup>

</Project>