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
7 changes: 5 additions & 2 deletions src/SharpClient.App/SharpClient.App.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,11 @@
<!-- 2.5.1 fixes the missing FSharp.Core nuspec dependency, so FSharp.Core now flows in
transitively (and is packaged into the APK) without an explicit reference here. The F#
MSDP assembly no longer crashes negotiation with "Could not load file or assembly
'FSharp.Core'". -->
<PackageReference Include="TelnetNegotiationCore" Version="2.5.1" />
'FSharp.Core'".
2.5.2 stops the client from initiating CHARSET (WILL CHARSET): a client/server
WILL/WILL collision left CHARSET unresolved and made SharpMUSH drop the login line,
so connecting to Convergence always bounced back to the login screen. -->
<PackageReference Include="TelnetNegotiationCore" Version="2.5.2" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/SharpClient.Core/SharpClient.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<ItemGroup>
<!-- 2.5.1 declares its FSharp.Core dependency (the F# MSDP assembly needs it); earlier versions
did not, which crashed MSDP negotiation. No explicit FSharp.Core reference needed anymore. -->
<PackageReference Include="TelnetNegotiationCore" Version="2.5.1" />
<PackageReference Include="TelnetNegotiationCore" Version="2.5.2" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion src/SharpClient.Web/SharpClient.Web.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="TelnetNegotiationCore" Version="2.5.1" />
<PackageReference Include="TelnetNegotiationCore" Version="2.5.2" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading