Skip to content

Commit

Permalink
Update apphost error dialog text to put question last (#71165)
Browse files Browse the repository at this point in the history
  • Loading branch information
elinor-fung committed Jun 23, 2022
1 parent ddc4f95 commit a73c582
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/native/corehost/apphost/apphost.windows.cpp
Expand Up @@ -168,10 +168,10 @@ namespace
}

dialogMsg.append(
_X("Would you like to download it now?\n\n")
_X("Learn about "));
dialogMsg.append(error_code == StatusCode::FrameworkMissingFailure ? _X("framework resolution:") : _X("runtime installation:"));
dialogMsg.append(_X("\n") DOTNET_APP_LAUNCH_FAILED_URL);
dialogMsg.append(_X("\n") DOTNET_APP_LAUNCH_FAILED_URL _X("\n\n")
_X("Would you like to download it now?"));

assert(url.length() > 0);
assert(is_gui_application());
Expand Down

0 comments on commit a73c582

Please sign in to comment.