7 references to SkillFileContent
aspire (3)
Agents\CommonAgentApplicators.cs (3)
48
var normalizedExpected = NormalizeLineEndings(
SkillFileContent
);
124
await File.WriteAllTextAsync(skillFilePath,
SkillFileContent
, cancellationToken);
133
await File.WriteAllTextAsync(skillFilePath,
SkillFileContent
, cancellationToken);
Aspire.Cli.Tests (4)
Agents\CommonAgentApplicatorsTests.cs (3)
66
File.WriteAllText(skillFilePath, CommonAgentApplicators.
SkillFileContent
);
133
Assert.Equal(CommonAgentApplicators.
SkillFileContent
, newContent);
147
var contentWithCrlf = CommonAgentApplicators.
SkillFileContent
.ReplaceLineEndings("\r\n");
Agents\CopilotCliAgentEnvironmentScannerTests.cs (1)
157
await File.WriteAllTextAsync(skillFilePath, CommonAgentApplicators.
SkillFileContent
);