We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0652f3e commit 52d24f3Copy full SHA for 52d24f3
src/Microsoft.Data.SqlClient/tests/ManualTests/DataCommon/DataTestUtility.cs
@@ -444,7 +444,7 @@ public static bool IsSupportingDistributedTransactions()
444
#if NET7_0_OR_GREATER
445
return OperatingSystem.IsWindows() && IsNotAzureServer();
446
#elif NETFRAMEWORK
447
- return System.Runtime.InteropServices. RuntimeInformation.IsOSPlatform(OSPlatform.Windows) && IsNotAzureServer();
+ return System.Runtime.InteropServices. RuntimeInformation.IsOSPlatform(System.Runtime.InteropServices.OSPlatform.OSPlatform.Windows) && IsNotAzureServer();
448
#else
449
return false;
450
#endif
0 commit comments