File: src\IAssetPublisher.cs | Web Access |
Project: src\src\Microsoft.DotNet.Build.Tasks.Feed\Microsoft.DotNet.Build.Tasks.Feed.csproj (Microsoft.DotNet.Build.Tasks.Feed) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Threading; using Microsoft.DotNet.ProductConstructionService.Client.Models; using Task = System.Threading.Tasks.Task; namespace Microsoft.DotNet.Build.Tasks.Feed { public interface IAssetPublisher { LocationType LocationType { get; } Task PublishAssetAsync(string file, string blobPath, PushOptions options, SemaphoreSlim clientThrottle = null); } } |