For the v2 parser, there were situations where the dotnet publish would not include all the required runtime .dlls in cases where a RID was not defined.
This is a part of the issue we want to solve by also passing on runtime identifiers from the customer's environment, but it's a bit of a bigger picture.
Forcing the dotnet restore to use the current runtime will force the published artifact to contain the required .dlls which we need to traverse.
For the
v2
parser, there were situations where thedotnet publish
would not include all the required runtime.dll
s in cases where a RID was not defined.This is a part of the issue we want to solve by also passing on runtime identifiers from the customer's environment, but it's a bit of a bigger picture.
Forcing the
dotnet restore
to use the current runtime will force the published artifact to contain the required.dll
s which we need to traverse.dotnet
cli tool