Yunus Emre Kalkan
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
6 deletions
-
framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/Services/SuiteAppSettingsService.cs
|
|
|
@ -49,9 +49,7 @@ public class SuiteAppSettingsService : ITransientDependency |
|
|
|
|
|
|
|
private string GetFilePathOrNull(string version) |
|
|
|
{ |
|
|
|
var suiteVersion = version; |
|
|
|
|
|
|
|
if (suiteVersion == null) |
|
|
|
if (version == null) |
|
|
|
{ |
|
|
|
return null; |
|
|
|
} |
|
|
|
@ -62,9 +60,9 @@ public class SuiteAppSettingsService : ITransientDependency |
|
|
|
"tools", |
|
|
|
".store", |
|
|
|
"volo.abp.suite", |
|
|
|
suiteVersion, |
|
|
|
version, |
|
|
|
"volo.abp.suite", |
|
|
|
suiteVersion, |
|
|
|
version, |
|
|
|
"tools", |
|
|
|
"net7.0", |
|
|
|
"any", |
|
|
|
@ -93,4 +91,4 @@ public class SuiteAppSettingsService : ITransientDependency |
|
|
|
|
|
|
|
return suiteLine.Split(" ", StringSplitOptions.RemoveEmptyEntries)[1]; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|