You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#36: Test HTTPS connection in Hello World program, because TLS compatibility is most at risk when mixing older versions of operating systems, runtimes, OpenSSL, and glibc (such as .NET 8 on 32-bit Trixie)
Console.WriteLine($"Hello from {RuntimeInformation.FrameworkDescription}{RuntimeInformation.RuntimeIdentifier}{RuntimeInformation.OSArchitecture}{(Environment.Is64BitOperatingSystem?64:32)}-bit");
1
+
usingSystem.Runtime.InteropServices;
2
+
3
+
Console.WriteLine(
4
+
$"Hello from {RuntimeInformation.FrameworkDescription}{RuntimeInformation.RuntimeIdentifier}{RuntimeInformation.OSArchitecture}{(Environment.Is64BitOperatingSystem?64:32)}-bit");
0 commit comments