Browse Source

Update RemoveProjectFromSolutionStep.cs

pull/11486/head
maliming 4 years ago
parent
commit
40687e67bc
No known key found for this signature in database GPG Key ID: 96224957E51C89E
  1. 3
      framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ProjectBuilding/Building/Steps/RemoveProjectFromSolutionStep.cs

3
framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ProjectBuilding/Building/Steps/RemoveProjectFromSolutionStep.cs

@ -117,7 +117,8 @@ public class RemoveProjectFromSolutionStep : ProjectBuildPipelineStep
if (_projectFolderPath == null)
{
_projectFolderPath = context.FindFile("/aspnet-core/src/" + _projectName.EnsureEndsWith('/'))?.Name ??
context.FindFile("/src/" + _projectName.EnsureEndsWith('/'))?.Name;
context.FindFile("/src/" + _projectName.EnsureEndsWith('/'))?.Name ??
context.FindFile("/aspnet-core/" + _projectName.EnsureEndsWith('/'))?.Name;
}
}
}

Loading…
Cancel
Save