[tests] Use MyiOSFrameworkBinding as a binding test project instead of bindings-test (#9985)

MyiOSFrameworkBinding is in our normal collection of test projects (in
tests/common/TestProjects), which means it doesn't need a lot of special
casing to make it work.
This commit is contained in:
Rolf Bjarne Kvinge 2020-10-28 17:21:40 +01:00 коммит произвёл GitHub
Родитель 2cfbb67d31
Коммит 139c11a190
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -17,12 +17,12 @@ namespace Xamarin.iOS.Tasks
[Test]
public void BuildTest ()
{
var mtouchPaths = SetupProjectPaths ("bindings-test", projectPath: Path.Combine (Configuration.RootPath, "tests", "bindings-test", "iOS"), includePlatform: false, config: "Any CPU/Debug-unified");
var mtouchPaths = SetupProjectPaths ("MyiOSFrameworkBinding", includePlatform: false);
var proj = SetupProject (Engine, mtouchPaths.ProjectCSProjPath);
AppBundlePath = mtouchPaths.AppBundlePath;
var dllPath = Path.Combine(mtouchPaths.ProjectBinPath, "bindings-test.dll");
var dllPath = Path.Combine (mtouchPaths.ProjectBinPath, "MyiOSFrameworkBinding.dll");
Engine.ProjectCollection.SetGlobalProperty ("Platform", Platform);