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