Skip to content

Commit

Permalink
Merge pull request #14913 from abpframework/liangshiwei/cli
Browse files Browse the repository at this point in the history
Enhance ABP CLI
  • Loading branch information
maliming authored Dec 2, 2022
2 parents 13431a1 + cea5f34 commit 61c4348
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,11 @@ protected void DeleteUnrelatedProjects(ProjectBuildContext context, List<Project
steps.Add(new RemoveProjectFromSolutionStep("MyCompanyName.MyProjectName.Blazor.Server.Tiered"));
}

if (context.BuildArgs.UiFramework != UiFramework.MauiBlazor)
{
steps.Add(new RemoveProjectFromSolutionStep("MyCompanyName.MyProjectName.MauiBlazor"));
}

if (context.BuildArgs.UiFramework != UiFramework.Angular)
{
steps.Add(new RemoveFolderStep("/angular"));
Expand Down

0 comments on commit 61c4348

Please sign in to comment.