public ShimmerInstaller(ShimmerConfiguration configuration)
		{
			var urlOrPath = configuration.UrlOrPath;
			var applicationName = configuration.ApplicationName;
			var frameworkVersion = configuration.FrameworkVersion;

			updateManager = new UpdateManager(urlOrPath, applicationName, frameworkVersion);
			updateInfo = updateManager.CheckForUpdate().Wait();

			UpdatesAvailable = updateInfo.ReleasesToApply.Any();
			InstallationPath = updateManager.LatestInstallationPath(updateInfo);
		}