Browse Source
Merge pull request #10847 from abpframework/auto-merge/rel-5-0/680
Merge branch dev with rel-5.0
pull/10849/head
Berkan Sasmaz
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
8 additions and
4 deletions
-
framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ProjectModification/SolutionFileModifier.cs
|
|
|
@ -130,10 +130,14 @@ public class SolutionFileModifier : ITransientDependency |
|
|
|
"*.csproj", |
|
|
|
SearchOption.AllDirectories); |
|
|
|
|
|
|
|
var projectsUnderTest = Directory.GetFiles( |
|
|
|
Path.Combine(Path.GetDirectoryName(solutionFile), "modules", module.Name, "test"), |
|
|
|
"*.csproj", |
|
|
|
SearchOption.AllDirectories); |
|
|
|
var projectsUnderTest = new List<string>(); |
|
|
|
if (Directory.Exists(Path.Combine(Path.GetDirectoryName(solutionFile), "modules", module.Name, "test"))) |
|
|
|
{ |
|
|
|
projectsUnderTest = Directory.GetFiles( |
|
|
|
Path.Combine(Path.GetDirectoryName(solutionFile), "modules", module.Name, "test"), |
|
|
|
"*.csproj", |
|
|
|
SearchOption.AllDirectories).ToList(); |
|
|
|
} |
|
|
|
|
|
|
|
foreach (var projectPath in projectsUnderModule) |
|
|
|
{ |
|
|
|
|