You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
489 B
16 lines
489 B
8 months ago
|
using StabilityMatrix.Core.Models.Packages;
|
||
|
using StabilityMatrix.Core.Models.Progress;
|
||
|
|
||
|
namespace StabilityMatrix.Core.Models.PackageModification;
|
||
|
|
||
|
public class SetupOutputSharingStep(BasePackage package, string installPath) : IPackageStep
|
||
|
{
|
||
|
public Task ExecuteAsync(IProgress<ProgressReport>? progress = null)
|
||
|
{
|
||
|
package.SetupOutputFolderLinks(installPath);
|
||
|
return Task.CompletedTask;
|
||
|
}
|
||
|
|
||
|
public string ProgressTitle => "Setting up output sharing...";
|
||
|
}
|