Improve the error message when hostpolicy can't be found (dotnet/core-setup#3596)
authorSteve Harter <steveharter@users.noreply.github.com>
Tue, 16 Jan 2018 21:48:39 +0000 (15:48 -0600)
committerGitHub <noreply@github.com>
Tue, 16 Jan 2018 21:48:39 +0000 (15:48 -0600)
Commit migrated from https://github.com/dotnet/core-setup/commit/7536211ea26db40be3dc0ec0487a55217133e5d1

src/installer/corehost/cli/fxr/fx_muxer.cpp

index 94b86ef..0dc8b75 100644 (file)
@@ -485,12 +485,12 @@ bool fx_muxer_t::resolve_hostpolicy_dir(
     {
         if (!pal::file_exists(get_app(fx_definitions).get_runtime_config().get_path()))
         {
-            trace::error(_X("Failed to run as a standalone app because there is no '%s' file. If this should be a portable app instead, add that file specifying the appropriate framework."),
+            trace::error(_X("Failed to run as a standalone app. If this should be a portable app, add the %s file specifying the appropriate framework."),
                 get_app(fx_definitions).get_runtime_config().get_path().c_str());
         }
         else if (get_app(fx_definitions).get_runtime_config().get_fx_name().empty())
         {
-            trace::error(_X("Failed to run as a standalone app because there is no framework specified in '%s'. If this should be a portable app instead, specify the appropriate framework in that file."),
+            trace::error(_X("Failed to run as a standalone app. If this should be a portable app, specify the appropriate framework in %s."),
                 get_app(fx_definitions).get_runtime_config().get_path().c_str());
         }
     }