You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have only one runtime and my application doesn't want to run, tries find runtime, but cant.
Why the same yum package yum install aspnetcore-runtime-3.0 in minor version update does not contains needed runtimes?
Why minor version has braking changes and there is not any notes and issues at release notes?
I manually changed file *.runtimeconfig.json from Microsoft.AspNetCore.App 3.0.0 to Microsoft.NETCore.App 3.0.1, app started, but crashed on loading assembly dependencies.
I had to downgrade packages to get app working. yum downgrade aspnetcore-runtime-3.0-3.0.0-1.x86_64
System info
OS LINUX X64 Linux 3.10.0-1062.4.1.el7.x86_64 #1 SMP Fri Oct 18 17:15:30 UTC 2019 Cent OS 7
.NET Core 3.0.1
The text was updated successfully, but these errors were encountered:
This is a known issue: #3886. Two aspnetcore-runtime-3.0-3.0.1 packages were uploaded to the repo, and the repo ended up serving the wrong one. The workaround I listed at #3886 (comment) should work for you as-is because you're on CentOS 7.
The install instructions actually work for me in a fresh CentOS 7 Docker container at the moment, so it's possible all you have to do is upgrade aspnetcore-runtime-3.0 back up. (You may also need to yum clean packages before the upgrade to get rid of a cache of the old/bad package. Apologies, I don't know for sure when that's necessary.)
ASP.NET Core Runtime 3.0.1 broke production linux machine
App does not start with ASP.NET Core Runtime 3.0.1
General
On my linux machine was installed
ASP.NET Core Runtime 3.0.0 wiht SDK 3.0.101
dotnet --info
shows next:today I updated packages with
yum update
commandand now
I have only one runtime and my application doesn't want to run, tries find runtime, but cant.
Why the same yum package
yum install aspnetcore-runtime-3.0
in minor version update does not contains needed runtimes?Why minor version has braking changes and there is not any notes and issues at release notes?
I manually changed file
*.runtimeconfig.json
fromMicrosoft.AspNetCore.App 3.0.0
toMicrosoft.NETCore.App 3.0.1
, app started, but crashed on loading assembly dependencies.I had to downgrade packages to get app working.
yum downgrade aspnetcore-runtime-3.0-3.0.0-1.x86_64
System info
OS LINUX X64 Linux 3.10.0-1062.4.1.el7.x86_64 #1 SMP Fri Oct 18 17:15:30 UTC 2019 Cent OS 7
.NET Core 3.0.1
The text was updated successfully, but these errors were encountered: