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
The changes in #18763 are attempting to update the SDK version that is used in the VMR. This is causing failures in the vertical builds:
Errors
D:\a\_work\1\vmr\src\runtime\src\coreclr\tools\aot\ILCompiler\repro\repro.csproj error NU1101: Unable to find package Microsoft.NETCore.App.Runtime.freebsd-x64. No packages exist with this id in source(s): dotnet-eng, dotnet-libraries, dotnet-libraries-transport, dotnet-public, dotnet-tools, dotnet9-transport, net-sdk-supporting-feed, source-built-command-line-api, source-built-emsdk, source-built-transport-arcade, source-built-transport-cecil, source-built-transport-emsdk [D:\a\_work\1\vmr\src\runtime\Build.proj]
D:\a\_work\1\vmr\src\runtime\src\coreclr\tools\aot\ILCompiler\repro\repro.csproj error NU1101: Unable to find package Microsoft.NETCore.App.Runtime.freebsd-arm64. No packages exist with this id in source(s): dotnet-eng, dotnet-libraries, dotnet-libraries-transport, dotnet-public, dotnet-tools, dotnet9-transport, net-sdk-supporting-feed, source-built-command-line-api, source-built-emsdk, source-built-transport-arcade, source-built-transport-cecil, source-built-transport-emsdk [D:\a\_work\1\vmr\src\runtime\Build.proj]
D:\a\_work\1\vmr\src\runtime\src\coreclr\tools\aot\ILCompiler\repro\repro.csproj error NU1101: Unable to find package Microsoft.NETCore.App.Host.freebsd-x64. No packages exist with this id in source(s): dotnet-eng, dotnet-libraries, dotnet-libraries-transport, dotnet-public, dotnet-tools, dotnet9-transport, net-sdk-supporting-feed, source-built-command-line-api, source-built-emsdk, source-built-transport-arcade, source-built-transport-cecil, source-built-transport-emsdk [D:\a\_work\1\vmr\src\runtime\Build.proj]
D:\a\_work\1\vmr\src\runtime\src\coreclr\tools\aot\ILCompiler\repro\repro.csproj error NU1101: Unable to find package Microsoft.NETCore.App.Host.freebsd-arm64. No packages exist with this id in source(s): dotnet-eng, dotnet-libraries, dotnet-libraries-transport, dotnet-public, dotnet-tools, dotnet9-transport, net-sdk-supporting-feed, source-built-command-line-api, source-built-emsdk, source-built-transport-arcade, source-built-transport-cecil, source-built-transport-emsdk [D:\a\_work\1\vmr\src\runtime\Build.proj]
D:\a\_work\1\vmr\src\runtime\src\coreclr\tools\aot\ILCompiler\repro\repro.csproj error NU1101: Unable to find package Microsoft.AspNetCore.App.Runtime.freebsd-x64. No packages exist with this id in source(s): dotnet-eng, dotnet-libraries, dotnet-libraries-transport, dotnet-public, dotnet-tools, dotnet9-transport, net-sdk-supporting-feed, source-built-command-line-api, source-built-emsdk, source-built-transport-arcade, source-built-transport-cecil, source-built-transport-emsdk [D:\a\_work\1\vmr\src\runtime\Build.proj]
D:\a\_work\1\vmr\src\runtime\src\coreclr\tools\aot\ILCompiler\repro\repro.csproj error NU1101: Unable to find package Microsoft.AspNetCore.App.Runtime.freebsd-arm64. No packages exist with this id in source(s): dotnet-eng, dotnet-libraries, dotnet-libraries-transport, dotnet-public, dotnet-tools, dotnet9-transport, net-sdk-supporting-feed, source-built-command-line-api, source-built-emsdk, source-built-transport-arcade, source-built-transport-cecil, source-built-transport-emsdk [D:\a\_work\1\vmr\src\runtime\Build.proj]
The project.assets.json file shows that the net9.0 target framework has the Microsoft.NETCore.App.Host and Microsoft.AspNetCore.App.Runtime runtime packs listed as download dependencies for the freebsd RID. This causes an attempt to download these packages and it fails because they do not exist in the .NET engineering package feeds.
Since they're not built as part of the official build and aren't on the nuget feeds we won't find the runtime and apphost packs so only include them when targetting FreeBSD.
Fixesdotnet/installer#18768
Since they're not built as part of the official build and aren't on the nuget feeds we won't find the runtime and apphost packs so only include them when targetting FreeBSD.
Fixesdotnet/installer#18768
The changes in #18763 are attempting to update the SDK version that is used in the VMR. This is causing failures in the vertical builds:
The project.assets.json file shows that the
net9.0
target framework has the Microsoft.NETCore.App.Host and Microsoft.AspNetCore.App.Runtime runtime packs listed as download dependencies for the freebsd RID. This causes an attempt to download these packages and it fails because they do not exist in the .NET engineering package feeds.Binlog: inner-build-runtime.zip
This inclusion of the freebsd RID into the SDK was introduced by this change: #18493
/cc @Thefrank, @akoeplinger
The text was updated successfully, but these errors were encountered: