Browse Source
Merge pull request #15042 from abpframework/Add-missing-brackett
Cli: Add missing brackett in angular module source code adder
pull/15043/head
Muhammed Altuğ
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/ProjectModification/AngularSourceCodeAdder.cs
|
|
@ -249,7 +249,7 @@ public class AngularSourceCodeAdder : ITransientDependency |
|
|
|
|
|
|
|
|
fileContent = Regex.Replace(fileContent, @"apis\s*:\s*{", |
|
|
fileContent = Regex.Replace(fileContent, @"apis\s*:\s*{", |
|
|
"apis: {"+ Environment.NewLine + |
|
|
"apis: {"+ Environment.NewLine + |
|
|
" " + moduleName.Split(".").Last() + ":"+ Environment.NewLine + |
|
|
" " + moduleName.Split(".").Last() + ": {"+ Environment.NewLine + |
|
|
" rootNamespace: '" + moduleName + "',"+ Environment.NewLine + |
|
|
" rootNamespace: '" + moduleName + "',"+ Environment.NewLine + |
|
|
" },"); |
|
|
" },"); |
|
|
|
|
|
|
|
|
|