Skip to content

Commit b0f3b7b

Browse files
committed
Minor updates.
1 parent 94b64ef commit b0f3b7b

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

Implementations/KnowledgeDB-Implementation/PainKiller.PowerCommands.Bootstrap/PowerCommandsManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
using PainKiller.PowerCommands.Shared.Enums;
1212

1313
namespace PainKiller.PowerCommands.Bootstrap;
14-
public class PowerCommandsManager : IPowerCommandsManager
14+
public partial class PowerCommandsManager : IPowerCommandsManager
1515
{
1616
public readonly IExtendedPowerCommandServices<PowerCommandsConfiguration> Services;
1717
public PowerCommandsManager(IExtendedPowerCommandServices<PowerCommandsConfiguration> services) { Services = services; }

Implementations/KnowledgeDB-Implementation/PainKiller.PowerCommands.KnowledgeDBCommands/PainKiller.PowerCommands.KnowledgeDBCommands.csproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,6 @@
2525
</None>
2626
</ItemGroup>
2727

28-
<ItemGroup>
29-
<Folder Include="Extensions\" />
30-
</ItemGroup>
31-
3228

3329

3430
</Project>

Implementations/KnowledgeDB-Implementation/PainKiller.PowerCommands.KnowledgeDBCommands/PowerCommandServices.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,8 @@ private PowerCommandServices()
2121
Runtime = new PowerCommandsRuntime<PowerCommandsConfiguration>(ExtendedConfiguration, Diagnostic);
2222
Logger = GetLoggerManager.GetFileLogger(ExtendedConfiguration.Log.FileName.GetSafePathRegardlessHowApplicationStarted(ExtendedConfiguration.Log.FilePath),ExtendedConfiguration.Log.RollingIntervall,ExtendedConfiguration.Log.RestrictedToMinimumLevel);
2323
DefaultConsoleService = ConsoleService.Service;
24-
24+
2525
var suggestions = new List<string>(Runtime.CommandIDs);
26-
suggestions.AddRange(Runtime.CommandIDs.Select(s => $"describe {s}").ToList());
2726
suggestions.AddRange(Runtime.Commands.Where(c => !string.IsNullOrEmpty(c.GetDefaultParameter())).Select(c => $"{c.Identifier} {c.GetDefaultParameter()}").ToList());
2827

2928
ReadLineService.InitializeAutoComplete(history: new string[]{},suggestions: suggestions.ToArray());

0 commit comments

Comments
 (0)