MCPcopy Create free account
hub / github.com/Squirrel/Squirrel.Windows / GetInstallerUrlForVersion

Method GetInstallerUrlForVersion

src/Setup/FxHelper.cpp:334–348  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

332}
333
334UINT CFxHelper::GetInstallerUrlForVersion(NetVersion version)
335{
336 if (version >= NetVersion::net48) {
337 return IDS_FXDOWNLOADURL48;
338 }
339
340 if (version >= NetVersion::net47) {
341 return IDS_FXDOWNLOADURL47;
342 }
343
344 if (version >= NetVersion::net46) {
345 return IDS_FXDOWNLOADURL46;
346 }
347 return IDS_FXDOWNLOADURL;
348}
349
350// Deal with the aftermath of the framework installer telling us that we need to reboot
351HRESULT CFxHelper::HandleRebootRequirement(bool isQuiet)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected