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