Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/installer/corehost/cli/hostpolicy/deps_resolver.cpp')
-rw-r--r--src/installer/corehost/cli/hostpolicy/deps_resolver.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/installer/corehost/cli/hostpolicy/deps_resolver.cpp b/src/installer/corehost/cli/hostpolicy/deps_resolver.cpp
index 06ededa7e60..2e245b56dee 100644
--- a/src/installer/corehost/cli/hostpolicy/deps_resolver.cpp
+++ b/src/installer/corehost/cli/hostpolicy/deps_resolver.cpp
@@ -316,7 +316,7 @@ bool deps_resolver_t::probe_deps_entry(const deps_entry_t& entry, const pal::str
// If the deps json has the package name and version, then someone has already done rid selection and
// put the right asset in the dir. So checking just package name and version would suffice.
// No need to check further for the exact asset relative sub path.
- if (config.probe_deps_json->has_package(entry.library_name, entry.library_version) && entry.to_dir_path(probe_dir, false, candidate))
+ if (config.probe_deps_json->has_package(entry.library_name, entry.library_version) && entry.to_dir_path(probe_dir, candidate))
{
trace::verbose(_X(" Probed deps json and matched '%s'"), candidate->c_str());
return true;
@@ -334,7 +334,7 @@ bool deps_resolver_t::probe_deps_entry(const deps_entry_t& entry, const pal::str
{
if (entry.is_rid_specific)
{
- if (entry.to_rel_path(deps_dir, true, candidate))
+ if (entry.to_rel_path(deps_dir, candidate))
{
trace::verbose(_X(" Probed deps dir and matched '%s'"), candidate->c_str());
return true;
@@ -343,7 +343,7 @@ bool deps_resolver_t::probe_deps_entry(const deps_entry_t& entry, const pal::str
else
{
// Non-rid assets, lookup in the published dir.
- if (entry.to_dir_path(deps_dir, true, candidate))
+ if (entry.to_dir_path(deps_dir, candidate))
{
trace::verbose(_X(" Probed deps dir and matched '%s'"), candidate->c_str());
return true;