11 references to ManifestFileName
aspire (11)
Agents\AspireSkills\AspireSkillsBundleProvider.cs (6)
116
var manifestPath = Path.Combine(bundleDirectory.FullName, AspireSkillsBundleLayout.
ManifestFileName
);
574
var rootManifestPath = Path.Combine(extractionDirectory, AspireSkillsBundleLayout.
ManifestFileName
);
581
var packageManifestPath = Path.Combine(packageDirectory, AspireSkillsBundleLayout.
ManifestFileName
);
589
.Where(directory => File.Exists(Path.Combine(directory, AspireSkillsBundleLayout.
ManifestFileName
)))
599
throw new InvalidOperationException($"Downloaded Aspire skills package contains multiple {AspireSkillsBundleLayout.
ManifestFileName
} files.");
602
throw new InvalidOperationException($"Downloaded Aspire skills package does not contain {AspireSkillsBundleLayout.
ManifestFileName
}.");
Agents\AspireSkills\AspireSkillsInstaller.cs (2)
1068
File.Exists(Path.Combine(versionCacheDirectory, AspireSkillsBundleLayout.
ManifestFileName
)) ||
1080
TryDeleteFile(Path.Combine(versionCacheDirectory, AspireSkillsBundleLayout.
ManifestFileName
));
Agents\Hooks\AgentTelemetryCatalog.cs (3)
115
if (parts is not ([AspireSkillsBundleLayout.
ManifestFileName
] or [_, AspireSkillsBundleLayout.
ManifestFileName
]))
128
return manifest ?? throw new InvalidDataException($"The bundled skills archive is missing {AspireSkillsBundleLayout.
ManifestFileName
}.");