3 implementations of ExtractManifestAsync
dotnet (2)
Commands\Workload\Install\FileBasedInstaller.cs (1)
661public async Task ExtractManifestAsync(string nupkgPath, string targetPath)
Commands\Workload\Install\NetSdkMsiInstallerClient.cs (1)
747public async Task ExtractManifestAsync(string nupkgPath, string targetPath)
dotnet.Tests (1)
CommandTests\Workload\Install\MockPackWorkloadInstaller.cs (1)
189public Task ExtractManifestAsync(string nupkgPath, string targetPath)
2 references to ExtractManifestAsync
dotnet (2)
Commands\Workload\Install\WorkloadManifestUpdater.cs (1)
341await _workloadManifestInstaller.ExtractManifestAsync(packagePath, adManifestPath);
Commands\Workload\InstallingWorkloadCommand.cs (1)
401await _workloadInstaller.ExtractManifestAsync(downloadedPackagePath, Path.Combine(extractedManifestsPath, download.Id));