1 write to _spec
aspire (1)
Projects\GuestRuntime.cs (1)
31_spec = spec;
14 references to _spec
aspire (14)
Projects\GuestRuntime.cs (14)
40public string Language => _spec.Language; 45public string DisplayName => _spec.DisplayName; 51public string? ExtensionLaunchCapability => _spec.ExtensionLaunchCapability; 63if (_spec.InstallDependencies is null) 65_logger.LogDebug("No dependency installation configured for {Language}", _spec.Language); 69var args = ReplacePlaceholders(_spec.InstallDependencies.Args, null, directory, null); 70var environmentVariables = _spec.InstallDependencies.EnvironmentVariables ?? new Dictionary<string, string>(); 74_spec.InstallDependencies.Command, 101var commandSpec = watchMode && _spec.WatchExecute is not null 102? _spec.WatchExecute 103: _spec.Execute; 126var commandSpec = _spec.PublishExecute ?? _spec.Execute; 158public ProcessGuestLauncher CreateDefaultLauncher() => new(_spec.Language, _logger, _fileLoggerProvider, _commandResolver);