Browse Source

Sort ApplicationParts with AssemblyPart last

pull/23196/head
maliming 7 months ago
parent
commit
23c31fd6c4
No known key found for this signature in database GPG Key ID: A646B9CB645ECEA4
  1. 2
      framework/src/Volo.Abp.AspNetCore.Mvc/Volo/Abp/AspNetCore/Mvc/ApplicationPartSorter.cs

2
framework/src/Volo.Abp.AspNetCore.Mvc/Volo/Abp/AspNetCore/Mvc/ApplicationPartSorter.cs

@ -23,7 +23,7 @@ public static class ApplicationPartSorter
if (!parts.IsNullOrEmpty())
{
sortedParts.AddRange(parts);
sortedParts.AddRange(parts.OrderBy(x => x is AssemblyPart ? 1 : 0));
}
}
sortedParts.Reverse();

Loading…
Cancel
Save