Browse Source
Update RemoveProjectFromSolutionStep.cs
pull/11486/head
maliming
4 years ago
No known key found for this signature in database
GPG Key ID: 96224957E51C89E
1 changed files with
2 additions and
1 deletions
-
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; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|