Merge pull request #8820 from abpframework/issues/8819

Cli: Add-module should remove redundant projects from test folder
pull/8904/head
Alper Ebicoglu 5 years ago committed by GitHub
commit d25359080e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -308,6 +308,14 @@ namespace Volo.Abp.Cli.ProjectModification
{
Directory.Delete(projectFolderPath, true);
}
else
{
projectFolderPath = Path.Combine(Path.GetDirectoryName(moduleSolutionFile), "test", projectName);
if (Directory.Exists(projectFolderPath))
{
Directory.Delete(projectFolderPath, true);
}
}
}
private void ChangeDomainTestReferenceToMongoDB(ModuleWithMastersInfo module, string moduleSolutionFile)

Loading…
Cancel
Save