modmynitro

Results 7 comments of modmynitro

`Default` is hardcoded as `240`. (https://docs.microsoft.com/en-us/dotnet/api/system.security.authentication.sslprotocols?view=netframework-4.7.2) Therefore `Tls12` is not supported. `None ` does not work because its explicitly disabled on your system. (https://referencesource.microsoft.com/#System/net/System/Net/SecureProtocols/_SslState.cs,164)

@robinrodricks i would prefer using `None` as suggested in #356.

Its not in C# 12 https://github.com/dotnet/csharplang/issues/6420#issuecomment-1745771890

Could the `System.Threading.Tasks.Extensions` nuget package be used to support older framworks.

I have created a repo for this issue. https://github.com/modmynitro/coverlet-test

I want to use `net8.0` not `.NET Framework` so this does not help in my situation.

I can use this solution as workaround, but we only use `dotnet test` on our gitlab runners and this solution forces any local build to be self contained. I would...