@@ -17,19 +17,13 @@ variables:
1717  - name : Configuration 
1818    value : Release 
1919  - name : DotNetVersion 
20-     value : 6.0.100-preview.4.21255.9  
20+     value : 6.0.100-preview.5.21302.13  
2121  - name : BootsVersion 
2222    value : 1.0.4.624 
2323  - name : DotNet.Cli.Telemetry.OptOut 
2424    value : true 
25-   - name : Android.Msi 
26-     value : https://dl.internalx.com/vsts-devdiv/Xamarin.Android/public/net6/4716293/6.0.1xx-preview4/a09fa1e93a94c7ee9f759c840ed7a5829d0e9152/Microsoft.NET.Workload.Android.11.0.200.245.msi 
27-   - name : Android.Pkg 
28-     value : https://dl.internalx.com/vsts-devdiv/Xamarin.Android/public/net6/4716293/6.0.1xx-preview4/a09fa1e93a94c7ee9f759c840ed7a5829d0e9152/Microsoft.NET.Workload.Android-11.0.200-preview.4.245.pkg 
29-   - name : iOS.Msi 
30-     value : https://bosstoragemirror.azureedge.net/wrench/6.0.1xx-preview4/05cf7f73ec60d360f1a6391f1c047d4e8957203a/4731910/package/Microsoft.NET.Workload.iOS.14.5.100-preview.4.638.msi 
31-   - name : iOS.Pkg 
32-     value : https://bosstoragemirror.azureedge.net/wrench/6.0.1xx-preview4/05cf7f73ec60d360f1a6391f1c047d4e8957203a/4731910/package/notarized/Microsoft.iOS.Bundle.14.5.100-preview.4.638.pkg 
25+   - name : DotNet.Workloads 
26+     value : microsoft-android-sdk-full microsoft-ios-sdk-full microsoft-macos-sdk-full 
3327
3428jobs :
3529
@@ -45,12 +39,11 @@ jobs:
4539      & dotnet --list-sdks 
4640    displayName: install .NET $(DotNetVersion) 
4741powershell : | 
48-       & dotnet tool update --global boots --version $(BootsVersion) 
49-       & boots $(Android.Msi) 
50-       & boots $(iOS.Msi) 
42+       & dotnet workload install $(DotNet.Workloads) --verbosity diag 
5143    displayName: install .NET workloads 
5244powershell : | 
53-       & boots --stable Xamarin.Android 
45+       & dotnet tool update --global boots --version $(BootsVersion) 
46+       & boots --preview Xamarin.Android 
5447    displayName: install Xamarin.Android 
5548script : dotnet build Xamarin.Legacy.Sdk.sln -bl:$(System.DefaultWorkingDirectory)/bin/Xamarin.Legacy.Sdk.binlog 
5649    displayName : build SDK 
@@ -83,12 +76,11 @@ jobs:
8376      & dotnet --list-sdks 
8477    displayName: install .NET $(DotNetVersion) 
8578powershell : | 
86-       & dotnet tool update --global boots --version $(BootsVersion) 
87-       & boots $(Android.Msi) 
88-       & boots $(iOS.Msi) 
79+       & dotnet workload install $(DotNet.Workloads) --verbosity diag 
8980    displayName: install .NET workloads 
9081powershell : | 
91-       & boots --stable Xamarin.Android 
82+       & dotnet tool update --global boots --version $(BootsVersion) 
83+       & boots --preview Xamarin.Android 
9284    displayName: install Xamarin.Android 
9385task : MSBuild@1 
9486    inputs :
@@ -124,12 +116,11 @@ jobs:
124116      dotnet --list-sdks && 
125117      echo "##vso[task.setvariable variable=PATH]$PATH" 
126118    displayName: install .NET $(DotNetVersion) 
119+ bash : dotnet workload install $(DotNet.Workloads) --verbosity diag 
120+     displayName : install .NET workloads 
127121  - bash : > 
128122      dotnet tool update --global boots --version $(BootsVersion) && 
129-       boots $(Android.Pkg) && 
130-       boots $(iOS.Pkg) 
131-     displayName: install .NET workloads 
132- bash : boots --stable Xamarin.Android 
123+       boots --preview Xamarin.Android 
133124    displayName: install Xamarin.Android 
134125script : dotnet build Xamarin.Legacy.Sdk.sln -bl:$(System.DefaultWorkingDirectory)/bin/Xamarin.Legacy.Sdk.binlog 
135126    displayName : build SDK 
0 commit comments