An OutputType=Exe project build will create a runtimeconfig.dev.json which adds probing paths:
"additionalProbingPaths": [
"C:\\Users\\radu.oancea\\.dotnet\\store\\|arch|\\|tfm|",
"C:\\Users\\radu.oancea\\.nuget\\packages"
]
Since all the dependencies should be near the AppHost, and the runtime probes in its directory first (e.g. I've used dotnet store first on my dependencies, but it still loaded them from the build folder), does runtimeconfig.dev.json have an effect?
An
OutputType=Exeproject build will create aruntimeconfig.dev.jsonwhich adds probing paths:Since all the dependencies should be near the
AppHost, and the runtime probes in its directory first (e.g. I've useddotnet storefirst on my dependencies, but it still loaded them from the build folder), doesruntimeconfig.dev.jsonhave an effect?