22 references to HomeDirectory
aspire (19)
Acquisition\InstallationDiscovery.cs (1)
163_executionContext.HomeDirectory,
Agents\ClaudeCode\ClaudeCodeAgentEnvironmentScanner.cs (1)
123var homeDirectory = _executionContext.HomeDirectory;
Agents\Copilot\CopilotAgentEnvironmentScanner.cs (1)
65var homeDirectory = _executionContext.HomeDirectory;
Agents\Copilot\CopilotAppInstallationDetector.cs (3)
54Path.Combine(executionContext.HomeDirectory.FullName, "AppData", "Local"), 68Path.Combine(executionContext.HomeDirectory.FullName, "Applications", MacOSAppBundleName), 100: Path.Combine(executionContext.HomeDirectory.FullName, ".local", "share");
Agents\Hooks\TelemetryHookConfigurator.cs (2)
168var claudeDirectory = Path.Combine(_executionContext.HomeDirectory.FullName, ClaudeFolderName); 313var configDirectory = CopilotPaths.GetConfigDirectory(_executionContext.HomeDirectory, _environment);
Agents\VsCode\VsCodeAgentEnvironmentScanner.cs (1)
150var homeDirectory = _executionContext.HomeDirectory;
Backchannel\AppHostConnectionResolver.cs (1)
148executionContext.HomeDirectory.FullName,
Backchannel\AuxiliaryBackchannelMonitor.cs (2)
42private readonly IReadOnlyList<AppHostSocketDirectory> _socketDirectories = AppHostSocketManager.GetSocketDirectories(executionContext.HomeDirectory.FullName); 373var currentSockets = AppHostSocketManager.FindSockets(executionContext.HomeDirectory.FullName, Environment.ProcessId, logger);
Commands\AddCommand.cs (1)
373ExecutionContext.HomeDirectory,
Commands\AgentInitCommand.cs (1)
349ExecutionContext.HomeDirectory,
Commands\AppHostLauncher.cs (1)
309executionContext.HomeDirectory.FullName,
Commands\RunCommand.cs (1)
338runningInstanceResult = await project.FindAndStopRunningInstanceAsync(effectiveAppHostFile, ExecutionContext.HomeDirectory, cancellationToken);
Projects\ProjectLocator.cs (1)
1407var userProfile = executionContext.HomeDirectory.FullName;
Telemetry\InternalMicrosoftDetector.cs (1)
894var copilotHome = Path.Combine(_executionContext.HomeDirectory.FullName, ".copilot");
Utils\EnvironmentChecker\VsCodeExtensionCheck.cs (1)
60var detection = Detect(_environment, _executionContext.HomeDirectory, _commandResolver);
Aspire.Cli.Tests (3)
Commands\RunCommandTests.cs (1)
139var socketPath = CreateMatchingSocketFile(appHostFile, executionContext.HomeDirectory);
Commands\StartCommandTests.cs (1)
151var socketPath = CreateMatchingSocketFile(appHostFile, executionContext.HomeDirectory);
Projects\ProjectLocatorTests.cs (1)
2203? Path.Combine(executionContext.HomeDirectory.FullName, ".aspire", AspireConfigFile.FileName)