@@ -297,10 +297,10 @@ let ``should skip buckets which contain placeholder while adjusting upper versio
297
297
|> Seq.map ( fun f -> f.Path) |> shouldNotContain @" ..\Rx-Main\lib\net20\Rx.dll"
298
298
299
299
[<Test>]
300
- let ``should filter _._ when processing blacklist `` () =
300
+ let ``should filter _._ when processing ignore list `` () =
301
301
let model =
302
302
emptymodel.AddReferences([ @" ..\Rx-Main\lib\net40\_._" ; @" ..\Rx-Main\lib\net20\_._" ] |> fromLegacyList @" ..\Rx-Main\" )
303
- .FilterBlackList ()
303
+ .FilterIgnoreList ()
304
304
305
305
model.GetLegacyReferences( TargetProfile.SinglePlatform ( DotNetFramework FrameworkVersion.V2))
306
306
|> Seq.map ( fun f -> f.Path) |> shouldNotContain @" ..\Rx-Main\lib\net20\_._"
@@ -406,7 +406,7 @@ let ``should handle lib install of Microsoft.BCL for NET >= 40``() =
406
406
@" ..\Microsoft.Bcl\lib\net40\System.Threading.Tasks.dll"
407
407
408
408
@" ..\Microsoft.Bcl\lib\net45\_._" ] |> fromLegacyList @" ..\Microsoft.Bcl\" )
409
- .FilterBlackList ()
409
+ .FilterIgnoreList ()
410
410
411
411
model.GetLegacyReferences( TargetProfile.SinglePlatform ( DotNetFramework FrameworkVersion.V3_ 5))
412
412
|> Seq.map ( fun f -> f.Path) |> shouldNotContain @" ..\Microsoft.Bcl\lib\net40\System.IO.dll"
@@ -432,7 +432,7 @@ let ``should skip lib install of Microsoft.BCL for monotouch and monoandroid``()
432
432
@" ..\Microsoft.Bcl\lib\monoandroid\_._"
433
433
@" ..\Microsoft.Bcl\lib\monotouch\_._"
434
434
@" ..\Microsoft.Bcl\lib\net45\_._" ] |> fromLegacyList @" ..\Microsoft.Bcl\" )
435
- .FilterBlackList ()
435
+ .FilterIgnoreList ()
436
436
437
437
model.GetLegacyReferences( TargetProfile.SinglePlatform ( MonoAndroid MonoAndroidVersion.V1)) |> shouldBeEmpty
438
438
model.GetLegacyReferences( TargetProfile.SinglePlatform MonoTouch) |> shouldBeEmpty
@@ -611,7 +611,7 @@ let ``should handle lib install of MicrosoftBcl``() =
611
611
@" ..\Microsoft.Bcl\lib\wpa81\_._"
612
612
@" ..\Microsoft.Bcl\lib\portable-net451+win81\_._"
613
613
@" ..\Microsoft.Bcl\lib\portable-net451+win81+wpa81\_._" ]
614
- |> fromLegacyList @" ..\Microsoft.Bcl\" )) .FilterBlackList ()
614
+ |> fromLegacyList @" ..\Microsoft.Bcl\" )) .FilterIgnoreList ()
615
615
616
616
model.GetLegacyReferences( TargetProfile.SinglePlatform ( DotNetFramework FrameworkVersion.V4))
617
617
|> Seq.map ( fun f -> f.Path) |> shouldContain @" ..\Microsoft.Bcl\lib\net40\System.IO.dll"
@@ -726,7 +726,7 @@ let ``should only handle dll and exe files``() =
726
726
@" ..\Fantomas\lib\FSharp.Core.dll"
727
727
@" ..\Fantomas\lib\Fantomas.exe" ] |> fromLegacyList @" ..\Fantomas\" ,
728
728
NuspecReferences.All)
729
- .FilterBlackList ()
729
+ .FilterIgnoreList ()
730
730
731
731
model.GetLegacyReferences( TargetProfile.SinglePlatform ( DotNetFramework FrameworkVersion.V2))
732
732
|> Seq.map ( fun f -> f.Path) |> shouldContain @" ..\Fantomas\lib\FantomasLib.dll"
@@ -773,7 +773,7 @@ let ``should handle props files``() =
773
773
InstallModel.EmptyModel( PackageName " xunit.runner.visualstudio" , SemVer.Parse " 0.1" ) .AddTargetsFiles(
774
774
[ @" ..\xunit.runner.visualstudio\build\net20\xunit.runner.visualstudio.props"
775
775
@" ..\xunit.runner.visualstudio\build\portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid\xunit.runner.visualstudio.props" ] |> fromLegacyList @" ..\xunit.runner.visualstudio\" )
776
- .FilterBlackList ()
776
+ .FilterIgnoreList ()
777
777
778
778
model.GetTargetsFiles( TargetProfile.SinglePlatform ( DotNetFramework FrameworkVersion.V2))
779
779
|> Seq.map ( fun f -> f.Path) |> shouldContain @" ..\xunit.runner.visualstudio\build\net20\xunit.runner.visualstudio.props"
@@ -784,7 +784,7 @@ let ``should handle global props files``() =
784
784
InstallModel.EmptyModel( PackageName " xunit.runner.visualstudio" , SemVer.Parse " 0.1" ) .AddTargetsFiles(
785
785
[ @" ..\xunit.runner.visualstudio\build\xunit.runner.visualstudio.props"
786
786
@" ..\xunit.runner.visualstudio\build\portable-net45+aspnetcore50+win+wpa81+wp80+monotouch+monoandroid\xunit.runner.visualstudio.props" ] |> fromLegacyList @" ..\xunit.runner.visualstudio\" )
787
- .FilterBlackList ()
787
+ .FilterIgnoreList ()
788
788
789
789
model.GetTargetsFiles( TargetProfile.SinglePlatform ( DotNetFramework FrameworkVersion.V2))
790
790
|> Seq.map ( fun f -> f.Path) |> shouldContain @" ..\xunit.runner.visualstudio\build\xunit.runner.visualstudio.props"
@@ -794,7 +794,7 @@ let ``should handle Targets files``() =
794
794
let model =
795
795
InstallModel.EmptyModel( PackageName " StyleCop.MSBuild" , SemVer.Parse " 0.1" ) .AddTargetsFiles(
796
796
[ @" ..\StyleCop.MSBuild\build\StyleCop.MSBuild.Targets" ] |> fromLegacyList @" ..\StyleCop.MSBuild\" )
797
- .FilterBlackList ()
797
+ .FilterIgnoreList ()
798
798
799
799
model.GetTargetsFiles( TargetProfile.SinglePlatform ( DotNetFramework FrameworkVersion.V2))
800
800
|> Seq.map ( fun f -> f.Path) |> shouldContain @" ..\StyleCop.MSBuild\build\StyleCop.MSBuild.Targets"
0 commit comments