From 925e516bc273a444f92b75c7e8d9550f05d7eda8 Mon Sep 17 00:00:00 2001 From: Dmitry Kravchuk Date: Wed, 1 May 2024 19:16:28 +0200 Subject: [PATCH 1/3] added support xamarin framework --- src/ToastBindings.csproj | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/src/ToastBindings.csproj b/src/ToastBindings.csproj index e10e6bf..6cb4028 100644 --- a/src/ToastBindings.csproj +++ b/src/ToastBindings.csproj @@ -1,15 +1,16 @@ - + - net6.0-ios10 + xamarin.ios10;net6.0-ios + true true - 8.0 + 10.0 Toast for Xamarin.iOS Xamarin iOS binding library of Toast - toast notifications to the UIView. Softeq Development Corporation Copyright © 2024 Softeq Development Corporation - 4.0.0.3 + 4.0.0.4 Softeq Development Corp. Softeq Development Corp. https://github.com/Softeq/Toast-xamarin-ios @@ -24,9 +25,15 @@ + + + + + + + - - + From 02fbccc01065ad9420d8a393fe80b8e07c79fae4 Mon Sep 17 00:00:00 2001 From: Dmitry Kravchuk Date: Wed, 1 May 2024 19:52:57 +0200 Subject: [PATCH 2/3] update .net build version --- azure-pipelines/templates/setup-dotnet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines/templates/setup-dotnet.yml b/azure-pipelines/templates/setup-dotnet.yml index 76fd866..2d24899 100644 --- a/azure-pipelines/templates/setup-dotnet.yml +++ b/azure-pipelines/templates/setup-dotnet.yml @@ -1,7 +1,7 @@ parameters: - name: version type: string - default: 6.0.402 + default: 6.0.421 steps: - task: UseDotNet@2 From 8224b3b05dfc1b06f823c2bf679f60a9aefbeaa0 Mon Sep 17 00:00:00 2001 From: Dmitry Kravchuk Date: Wed, 1 May 2024 20:00:59 +0200 Subject: [PATCH 3/3] 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