Browse Source

Cli: Fix Suite's appsettings.json path

pull/15692/head
Yunus Emre Kalkan 3 years ago
parent
commit
98daaa35d3
  1. 6
      framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/Services/SuiteAppSettingsService.cs

6
framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/Services/SuiteAppSettingsService.cs

@ -51,7 +51,7 @@ public class SuiteAppSettingsService : ITransientDependency
}
var path = Path.Combine(
"%USERPROFILE%",
Environment.GetFolderPath(Environment.SpecialFolder.UserProfile),
".dotnet",
"tools",
".store",
@ -59,7 +59,9 @@ public class SuiteAppSettingsService : ITransientDependency
suiteVersion,
"volo.abp.suite",
suiteVersion,
"content",
"tools",
"net7.0",
"any",
"appsettings.json"
);

Loading…
Cancel
Save