| 87 | } |
| 88 | |
| 89 | std::wstring GetUri(AppWindow* appWindow) |
| 90 | { |
| 91 | std::wstring uri = appWindow->GetLocalUri(L"AppStartPage.html", true); |
| 92 | |
| 93 | uri += L"?sdkBuild="; |
| 94 | uri += GetSdkBuild(); |
| 95 | |
| 96 | uri += L"&runtimeVersion="; |
| 97 | uri += GetRuntimeVersion(appWindow); |
| 98 | |
| 99 | uri += L"&appPath="; |
| 100 | uri += GetAppPath(); |
| 101 | |
| 102 | uri += L"&runtimePath="; |
| 103 | uri += GetRuntimePath(appWindow); |
| 104 | |
| 105 | return uri; |
| 106 | } |
| 107 | |
| 108 | }; // namespace AppStartPage |
no test coverage detected