|
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
#nullable disable
using System;
using NuGet.Common;
namespace NuGet.Protocol.Core.Types
{
/// <summary>
/// Contains logics to push symbol packages in Http server or file system
/// </summary>
public class SymbolPackageUpdateResourceV3 : INuGetResource
{
private HttpSource _httpSource;
private string _source;
public SymbolPackageUpdateResourceV3(string source,
HttpSource httpSource)
{
_source = source;
_httpSource = httpSource;
}
public Uri SourceUri
{
get { return UriUtility.CreateSourceUri(_source); }
}
}
}
|