.NET User Secret management

This commit is contained in:
Matt Parker
2025-10-29 19:02:21 +10:00
parent a3d055573f
commit 0d974267e2
4 changed files with 72 additions and 1 deletions

View File

@@ -5,6 +5,7 @@ using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using SharpIDE.Application.Features.Analysis;
using SharpIDE.Application.Features.Build;
using SharpIDE.Application.Features.Evaluation;
using SharpIDE.Application.Features.FilePersistence;
using SharpIDE.Application.Features.FileWatching;
using SharpIDE.Application.Features.Run;
@@ -32,6 +33,7 @@ public partial class DiAutoload : Node
services.AddScoped<IdeCodeActionService>();
services.AddScoped<IdeApplyCompletionService>();
services.AddScoped<FileChangedService>();
services.AddScoped<DotnetUserSecretsService>();
services.AddScoped<IdeFileWatcher>();
services.AddScoped<IdeOpenTabsFileManager>();
services.AddScoped<RoslynAnalysis>();