private static void InstallDependencies() { Debug.Log("Installing Upfile dependencies"); UpliftManager.ResetInstances(); UpliftManager.Instance().InstallDependencies(strategy: UpliftManager.InstallStrategy.INCOMPLETE_LOCKFILE); AssetDatabase.Refresh(); }
private static void InstallLockfile() { Debug.Log("Installing from Lockfile : "); UpliftManager.ResetInstances(); UpliftManager.Instance().InstallDependencies(strategy: UpliftManager.InstallStrategy.ONLY_LOCKFILE); Debug.Log("-> Resfreshing AssetDatabase"); AssetDatabase.Refresh(); }
static Initialize() { Debug.Log("Upfile loading..."); if (!Upfile.CheckForUpfile()) { Debug.Log("No Upfile was found at the root of your project, Uplift created a sample one for you to start working on"); SampleFile.CreateSampleUpfile(); } if (!IsInitialized()) { UpliftManager.Instance().InstallDependencies(strategy: UpliftManager.InstallStrategy.ONLY_LOCKFILE, refresh: true); MarkAsInitialized(); } }
static Initialize() { Debug.Log("Using Uplift version " + About.Version); if (!Upfile.CheckForUpfile()) { Debug.Log("No Upfile was found at the root of your project, Uplift created a sample one for you to start working on"); SampleFile.CreateSampleUpfile(); } if (LockFileTracker.HasChanged()) { UpliftManager.ResetInstances(); UpliftManager.Instance().InstallDependencies(strategy: UpliftManager.InstallStrategy.ONLY_LOCKFILE); LockFileTracker.SaveState(); } Updater.CheckForUpdate(); }
private static void NukePackages() { Debug.LogWarning("Nuking all packages!"); UpliftManager.Instance().NukeAllPackages(); AssetDatabase.Refresh(); }
private static void InstallLockfile() { UpliftManager.ResetInstances(); UpliftManager.Instance().InstallDependencies(strategy: UpliftManager.InstallStrategy.ONLY_LOCKFILE); AssetDatabase.Refresh(); }
private static void InstallDependencies() { Debug.Log("Installing Upfile dependencies"); UpliftManager.Instance().InstallDependencies(); AssetDatabase.Refresh(); }