Skip to content

Commit 2ce0d47

Browse files
committed
moves back BeforeBuildExecution before all other steps as it made some breaking changes.
1 parent dc7abaa commit 2ce0d47

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/FlubuCore/Scripting/DefaultBuildScript.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ public static (List<string> targetsToRun, bool unknownTarget, List<string> notFo
137137

138138
private void RunBuild(IFlubuSession flubuSession)
139139
{
140+
BeforeBuildExecution(flubuSession);
140141
flubuSession.TargetTree.ResetTargetTree();
141142
ConfigureDefaultProps(flubuSession);
142143
ConfigureBuildProperties(flubuSession);
@@ -146,7 +147,7 @@ private void RunBuild(IFlubuSession flubuSession)
146147
_scriptProperties.InjectProperties(this, flubuSession);
147148

148149
_targetCreator.CreateTargetFromMethodAttributes(this, flubuSession);
149-
BeforeBuildExecution(flubuSession);
150+
150151
ConfigureTargets(flubuSession);
151152

152153
if (!flubuSession.Args.InteractiveMode)

0 commit comments

Comments
 (0)