fix: actually depend on crash handler task

This commit is contained in:
goat 2022-07-24 18:59:27 +02:00
parent 805a887f2e
commit 0e92ac0c4a
No known key found for this signature in database
GPG key ID: 49E2AA8C6A76498B

View file

@ -104,6 +104,7 @@ public class DalamudBuild : NukeBuild
Target Compile => _ => _ Target Compile => _ => _
.DependsOn(CompileDalamud) .DependsOn(CompileDalamud)
.DependsOn(CompileDalamudBoot) .DependsOn(CompileDalamudBoot)
.DependsOn(CompileDalamudCrashHandler)
.DependsOn(CompileInjector) .DependsOn(CompileInjector)
.DependsOn(CompileInjectorBoot); .DependsOn(CompileInjectorBoot);