- On some machines/mono versions it appears that printing System.Windows.DependencyObject requires System.Xaml for some reason.
- Since the test is testing our resolution from the GAC and we don't care about the specifics, I'm just adding that reference. Which we also get from the GAC.
This commit is contained in:
Chris Hamons 2016-06-20 12:50:09 -05:00
Родитель 4995f58459
Коммит 75fcf376d3
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -315,7 +315,7 @@ namespace Xamarin.MMP.Tests
{
XM45 = true,
TestCode = "System.Console.WriteLine (typeof (System.Windows.DependencyObject));",
References = "<Reference Include=\"WindowsBase\" />"
References = "<Reference Include=\"WindowsBase\" /><Reference Include=\"System.Xaml\" />"
};
TI.TestUnifiedExecutable (test, shouldFail : true);