mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
23 lines
717 B
C#
23 lines
717 B
C#
using System.Threading.Tasks;
|
|
using Wabbajack.DTOs;
|
|
using Wabbajack.DTOs.Directives;
|
|
using Wabbajack.Paths.IO;
|
|
|
|
namespace Wabbajack.Compiler.CompilationSteps
|
|
{
|
|
public class IncludeModIniData : ACompilationStep
|
|
{
|
|
public IncludeModIniData(ACompiler compiler) : base(compiler)
|
|
{
|
|
}
|
|
|
|
public override async ValueTask<Directive?> Run(RawSourceFile source)
|
|
{
|
|
if (!source.Path.InFolder(Consts.MO2ModFolderName) || source.Path.FileName != Consts.MetaIni) return null;
|
|
var e = source.EvolveTo<InlineFile>();
|
|
e.SourceDataID = await _compiler.IncludeFile(await source.AbsolutePath.ReadAllBytesAsync());
|
|
return e;
|
|
}
|
|
}
|
|
}
|