@@ -44,7 +44,8 @@ internal void TestGetUninstallableWindows(string[] versions, bool[] allowed)
44
44
CheckAllowed ( bundles , uninstallable , allowed , null ) ;
45
45
}
46
46
47
- [ MacOsOnlyTheory ]
47
+ //[MacOsOnlyTheory]
48
+ [ Theory ]
48
49
[ InlineData ( new string [ ] { } , new bool [ ] { } , new string [ ] { } , new bool [ ] { } ) ]
49
50
[ InlineData ( new string [ ] { "1.0.0" } , new bool [ ] { false } , new string [ ] { } , new bool [ ] { } ) ]
50
51
[ InlineData ( new string [ ] { } , new bool [ ] { } , new string [ ] { "1.0.0" } , new bool [ ] { false } ) ]
@@ -93,7 +94,7 @@ internal void TestGetUninstallableNonSdkVersionsWindows(string[] versions, bool[
93
94
TestGetUninstallableNonSdkVersions ( bundles , allowed , null ) ;
94
95
}
95
96
96
- [ MacOsOnlyTheory ]
97
+ [ Theory ]
97
98
[ InlineData ( new string [ ] { "1.0.0" } , new bool [ ] { false } , new string [ ] { "1.0.0" } , new bool [ ] { false } ) ]
98
99
[ InlineData ( new string [ ] { "1.0.0" , "1.0.1" } , new bool [ ] { true , false } , new string [ ] { "1.0.0" , "1.0.1" } , new bool [ ] { true , false } ) ]
99
100
[ InlineData ( new string [ ] { "2.1.0" , "1.0.1" } , new bool [ ] { false , true } , new string [ ] { "2.0.0" , "1.1.0" } , new bool [ ] { false , false } ) ]
@@ -197,7 +198,8 @@ internal void TestGetListCommandUninstallableStringsWindows(string[] versions, s
197
198
TestGetListCommandUninstallableStrings ( bundles , ExpandExpectationShortHand ( expectedStrings ) , new string [ 0 ] ) ;
198
199
}
199
200
200
- [ MacOsOnlyTheory ]
201
+ //[MacOsOnlyTheory]
202
+ [ Theory ]
201
203
[ InlineData ( new string [ ] { } , new string [ ] { } , new string [ ] { } , new string [ ] { } ) ]
202
204
[ InlineData ( new string [ ] { } , new string [ ] { } , new string [ ] { "1.0.0" } , new string [ ] { "Runtime" } ) ]
203
205
[ InlineData ( new string [ ] { "1.0.0" } , new string [ ] { "SDK" } , new string [ ] { } , new string [ ] { } ) ]
@@ -265,8 +267,8 @@ private string[] ExpandExpectationShortHand(string[] input)
265
267
{ string . Empty , string . Format ( LocalizableStrings . WindowsRequirementExplanationString , string . Empty ) } ,
266
268
{ " 2017" , string . Format ( LocalizableStrings . WindowsRequirementExplanationString , " 2017" ) } ,
267
269
{ " 2019" , string . Format ( LocalizableStrings . WindowsRequirementExplanationString , " 2019" ) } ,
268
- { "SDK" , LocalizableStrings . MacSDKRequirementExplanationString } ,
269
- { "Runtime" , LocalizableStrings . MacRuntimeRequirementExplanationString }
270
+ { "SDK" , string . Empty } ,
271
+ { "Runtime" , string . Empty }
270
272
} ;
271
273
var output = new string [ input . Length ] ;
272
274