@@ -887,7 +887,7 @@ public void WindowsFormsFrameworkReference(bool selfContained)
887887 TestFrameworkReferenceProfiles (
888888 frameworkReferences : new [ ] { "Microsoft.WindowsDesktop.App.WindowsForms" } ,
889889 expectedReferenceNames : new [ ] { "Microsoft.Win32.Registry" , "System.Windows.Forms" } ,
890- notExpectedReferenceNames : new [ ] { "WindowsFormsIntegration" } ,
890+ notExpectedReferenceNames : Enumerable . Empty < string > ( ) ,
891891 selfContained ) ;
892892 }
893893
@@ -899,7 +899,7 @@ public void WPFFrameworkReference(bool selfContained)
899899 TestFrameworkReferenceProfiles (
900900 frameworkReferences : new [ ] { "Microsoft.WindowsDesktop.App.WPF" } ,
901901 expectedReferenceNames : new [ ] { "Microsoft.Win32.Registry" , "System.Windows.Presentation" } ,
902- notExpectedReferenceNames : new [ ] { "WindowsFormsIntegration" } ,
902+ notExpectedReferenceNames : Enumerable . Empty < string > ( ) ,
903903 selfContained ) ;
904904 }
905905
@@ -911,7 +911,7 @@ public void WindowsFormAndWPFFrameworkReference(bool selfContained)
911911 TestFrameworkReferenceProfiles (
912912 frameworkReferences : new [ ] { "Microsoft.WindowsDesktop.App.WindowsForms" , "Microsoft.WindowsDesktop.App.WPF" } ,
913913 expectedReferenceNames : new [ ] { "Microsoft.Win32.Registry" , "System.Windows.Forms" , "System.Windows.Presentation" } ,
914- notExpectedReferenceNames : new [ ] { "WindowsFormsIntegration" } ,
914+ notExpectedReferenceNames : Enumerable . Empty < string > ( ) ,
915915 selfContained ) ;
916916 }
917917
0 commit comments