From 8224b3b05dfc1b06f823c2bf679f60a9aefbeaa0 Mon Sep 17 00:00:00 2001 From: Dmitry Kravchuk Date: Wed, 1 May 2024 20:00:59 +0200 Subject: [PATCH] added install xamarin step --- azure-pipelines/templates/setup-dotnet.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/azure-pipelines/templates/setup-dotnet.yml b/azure-pipelines/templates/setup-dotnet.yml index 2d24899..8c07844 100644 --- a/azure-pipelines/templates/setup-dotnet.yml +++ b/azure-pipelines/templates/setup-dotnet.yml @@ -15,4 +15,11 @@ steps: inputs: targetType: 'inline' script: | - dotnet workload install ios \ No newline at end of file + dotnet workload install ios + +- task: Bash@3 + displayName: Install Xamarin + inputs: + targetType: 'inline' + script: | + brew install --cask xamarin-ios \ No newline at end of file