Closed rseanhall closed 2 years ago
I had worked around this by letting that test project roll forward to a later version after filing this issue. I am now again trying to have something in my build process that requires x86 .NET Core 3.1 and it's still not installed. Since no one else is complaining, maybe it can just stay this way and I can workaround it again. It's curious that this was put into the vs2019-image-update-2011-01-06
when the issue is the vs2022 image.
You can easily install .NET Core 3.1 x86 during the build with the following PS script:
Invoke-WebRequest -Uri 'https://dot.net/v1/dotnet-install.ps1' -UseBasicParsing -OutFile "$env:temp\dotnet-install.ps1"
& $env:temp\dotnet-install.ps1 -Architecture x86 -Version '3.1.417' -InstallDir "$env:ProgramFiles\dotnet"
More info about dotnet-install.ps1
is here.
Please put back the .NET Core 3.1 x86 runtime on the VS2022 image.
My repo is at https://github.com/rseanhall. The last successful build with the VS2022 image was https://ci.appveyor.com/project/SeanHall/wix4/builds/41790360. A build that failed is https://ci.appveyor.com/project/SeanHall/wix4/builds/42045409.