1 write to _bundleDirectory
Aspire.Cli.Tests (1)
TestServices\FakePlaywrightServices.cs (1)
66
_bundleDirectory
= new DirectoryInfo(Path.Combine(executionContext.WorkingDirectory.FullName, ".fake-aspire-skills-bundle"));
5 references to _bundleDirectory
Aspire.Cli.Tests (5)
TestServices\FakePlaywrightServices.cs (5)
78
var bundle = await new AspireSkillsBundleProvider().LoadAsync(
_bundleDirectory
, cancellationToken);
84
if (
_bundleDirectory
.Exists)
164
var path = Path.Combine(
_bundleDirectory
.FullName, "skills", skillName, relativePath);
190
await File.WriteAllTextAsync(Path.Combine(
_bundleDirectory
.FullName, "skill-manifest.json"), manifestJson, cancellationToken);
205
Sha512 = ComputeSha512(Path.Combine(
_bundleDirectory
.FullName, "skills", skillName, entry.Key.RelativePath))