11 references to All
aspire (6)
Agents\Playwright\PlaywrightCliInstaller.cs (2)
310foreach (var location in SkillLocation.All) 360foreach (var location in SkillLocation.All)
Commands\AgentInitCommand.cs (4)
63string.Join(",", SkillLocation.All.Select(l => l.Id)), 237var defaultLocationIds = string.Join(",", SkillLocation.All.Where(l => l.IsDefault).Select(l => l.Id)); 242SkillLocation.All, 244preSelected: SkillLocation.All.Where(l => l.IsDefault),
Aspire.Cli.Tests (5)
Agents\CommonAgentApplicatorsTests.cs (5)
16Assert.Equal(4, SkillLocation.All.Count); 17Assert.Contains(SkillLocation.All, l => l == SkillLocation.Standard); 18Assert.Contains(SkillLocation.All, l => l == SkillLocation.ClaudeCode); 19Assert.Contains(SkillLocation.All, l => l == SkillLocation.GitHubSkills); 20Assert.Contains(SkillLocation.All, l => l == SkillLocation.OpenCode);