mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
23 lines
652 B
C#
23 lines
652 B
C#
using System.Threading.Tasks;
|
|
using Alphaleonis.Win32.Filesystem;
|
|
using Newtonsoft.Json;
|
|
using Wabbajack.Common;
|
|
|
|
namespace Wabbajack.Lib.CompilationSteps
|
|
{
|
|
public class IncludeAll : ACompilationStep
|
|
{
|
|
public IncludeAll(ACompiler compiler) : base(compiler)
|
|
{
|
|
}
|
|
|
|
public override async ValueTask<Directive?> Run(RawSourceFile source)
|
|
{
|
|
var inline = source.EvolveTo<InlineFile>();
|
|
await using var file = await source.File.StagedFile.OpenRead();
|
|
inline.SourceDataID = await _compiler.IncludeFile(await file.ReadAllAsync());
|
|
return inline;
|
|
}
|
|
}
|
|
}
|