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