wabbajack/Wabbajack.Lib/StatusMessages/ConfirmUpdateOfExistingInstall.cs

26 lines
900 B
C#
Raw Normal View History

2019-12-04 04:12:08 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Wabbajack.Common;
2019-12-04 04:12:08 +00:00
namespace Wabbajack.Lib
2019-12-04 04:12:08 +00:00
{
public class ConfirmUpdateOfExistingInstall : ConfirmationIntervention
2019-12-04 04:12:08 +00:00
{
public string OutputFolder { get; set; }
public string ModListName { get; set; }
public override string ShortDescription { get; } = "Do you want to overwrite existing files?";
2019-12-04 04:12:08 +00:00
public override string ExtendedDescription
{
get =>
$@"There appears to be a modlist already installed in the output folder. If you continue with the install,
Any files that exist in {OutputFolder} will be changed to match the files found in the {ModListName} modlist. This means that save games will be removed, custom settings
will be reverted. Are you sure you wish to continue?";
}
}
}