This repository was archived by the owner on Jan 13, 2025. It is now read-only.
[azdo] add initSteps for installing .NET 6#1082
Merged
Merged
Conversation
Context: dotnet/android-libraries#247 To improve upon the changes in abda726, we could add a new `initSteps` to install .NET 6. Previously, if we could only install .NET 6 during `preBuildSteps`, then the `dotnet tool` commands would fail: - pwsh: | dotnet tool install -g api-tools --version ${{ parameters.apiTools }} ... displayName: 'Install required .NET Core global tools' Because .NET 6 is defined in `global.json`, you would get an error saying there was no .NET 6 installed. If we add a new `initSteps`, we could do something like: initSteps: - pwsh: | $ProgressPreference = 'SilentlyContinue' Invoke-WebRequest -Uri "https://dot.net/v1/dotnet-install.ps1" -OutFile dotnet-install.ps1 & .\dotnet-install.ps1 -Version $(DotNet6Version) -InstallDir "$env:ProgramFiles\dotnet\" -Verbose tools: - 'xamarin.androidbinderator.tool': '0.4.2' - 'xamarin.androidx.migration.tool': '1.0.7.1' Then the `dotnet tool` commands will succeed.
mattleibow
approved these changes
Jan 27, 2021
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Context: dotnet/android-libraries#247
To improve upon the changes in abda726, we could add a new
initStepsto install .NET 6.Previously, if we could only install .NET 6 during
preBuildSteps,then the
dotnet toolcommands would fail:Because .NET 6 is defined in
global.json, you would get an errorsaying there was no .NET 6 installed.
If we add a new
initSteps, we could do something like:Then the
dotnet toolcommands will succeed.