Nexus.Client.ModManagement.ModInstaller.RunBasicInstallScript C# (CSharp) Method

RunBasicInstallScript() protected method

Runs the basic install script.
A basic install installs all of the files in the mod to the installation directory, and activates all plugin files.
protected RunBasicInstallScript ( IModFileInstaller p_mfiFileInstaller, ReadOnlyObservableList p_rolActiveMods ) : bool
p_mfiFileInstaller IModFileInstaller The file installer to use.
p_rolActiveMods ReadOnlyObservableList The list of active mods.
return bool
		protected bool RunBasicInstallScript(IModFileInstaller p_mfiFileInstaller, ReadOnlyObservableList<IMod> p_rolActiveMods)
		{
			BasicInstallTask bitTask = new BasicInstallTask(Mod, GameMode, p_mfiFileInstaller, PluginManager, EnvironmentInfo.Settings.SkipReadmeFiles, p_rolActiveMods);
			OnTaskStarted(bitTask);
			return bitTask.Execute();
		}