Browse Source

Update SuiteAppSettingsService.cs

pull/15692/head
Yunus Emre Kalkan 4 years ago
committed by GitHub
parent
commit
6b1342705d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/Services/SuiteAppSettingsService.cs

10
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];
}
}
}

Loading…
Cancel
Save