Skip to content

Commit

Permalink
Remove insertbefore from project extensions
Browse files Browse the repository at this point in the history
insertbefore="InitialStep" does not add the extension as the first
in the chain, but instead adds it at the end since VS Mac seems to
revert the order. Adding the extension without the insertbefore
will add the extension further down the chain but possibly not the
last since it depends on the order that addins are loaded.
  • Loading branch information
mrward committed Mar 25, 2023
1 parent bfda31f commit 2a1b7bb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
</Runtime>

<Extension path="/MonoDevelop/ProjectModel/ProjectModelExtensions">
<Class class="MonoDevelop.ProjectSystem.Tools.BuildLoggingProjectExtension" insertbefore="InitialStep" />
<Class class="MonoDevelop.ProjectSystem.Tools.BuildLoggingSolutionExtension" insertbefore="InitialStep" />
<Class class="MonoDevelop.ProjectSystem.Tools.BuildLoggingProjectExtension" />
<Class class="MonoDevelop.ProjectSystem.Tools.BuildLoggingSolutionExtension" />
</Extension>

<Extension path="/MonoDevelop/Ide/Commands">
Expand Down

0 comments on commit 2a1b7bb

Please # to comment.