2 implementations of PublishAssetAsync
Microsoft.DotNet.Build.Tasks.Feed (2)
src\AzureDevOpsNugetFeedAssetPublisher.cs (1)
67
public async Task
PublishAssetAsync
(string file, string blobPath, PushOptions options, SemaphoreSlim clientThrottle = null)
src\AzureStorageAssetPublisher.cs (1)
31
public async Task
PublishAssetAsync
(string file, string blobPath, PushOptions options, SemaphoreSlim clientThrottle = null)
2 references to PublishAssetAsync
Microsoft.DotNet.Build.Tasks.Feed (2)
src\PublishArtifactsInManifestBase.cs (2)
1567
await assetPublisher.
PublishAssetAsync
(localBlobPath, asset, pushOptions, null);
1628
assetPublisher.
PublishAssetAsync
(asset.localBlobPath, asset.id, pushOptions, clientThrottle)));