how to install a specific workload version in Azure pipeline #21779
Unanswered
JoacimWall
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi
After yesterdays update to SR4 my pipelines is not 'working' there are new bugs in maui 8.0.7 and later and I need to run version 8.0.6 of maui. but I am not able to install that version.
I used to have this line
- task: UseDotNet@2
displayName: 'Use .Net 8'
inputs:
version: 8.0.201
includePreviewVersions: true
and
and that result in this
Installing pack Microsoft.NETCore.App.Runtime.Mono.android-arm64 version 8.0.3...
and so on
New I have update to
and
and this result in
Installing pack Microsoft.NETCore.App.Runtime.Mono.android-arm64 version 8.0.7...
I know that I can referees a specific version in the SDK projekt file and I do that.
The problem is that I now get android error that not exist before and I compile the same code.
System.Text.Json.ThrowHelper.ReThrowWithPath(ReadStack& , JsonReaderException )
System.Text.Json.JsonException: ExpectedStartOfValueNotFound, 0x1F LineNumber: 0 | BytePositionInLine: 0.
I need to figure out if the Android error is related to the workload or not. I don't get this error on my Mac where I target 8.0.6 nugets
//Regards Joacim
Beta Was this translation helpful? Give feedback.
All reactions