Files
ReleaseUpdater/Updater/Core/IInstaller.cs

13 lines
654 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace Updater.Core;
/// <summary>Безопасно устанавливает извлеченные файлы в каталог установки..</summary>
public interface IInstaller
{
/// <summary>
/// Копирует файлы из источника для установки. Путь с резервным копированием и откатом..
/// </summary>
/// <param name="sourceDir">Каталог извлеченного содержимого.</param>
/// <param name="installPath">Целевой каталог установки.</param>
void Install(string sourceDir, string installPath);
}