File: ToolPackage\PackageLocation.cs
Web Access
Project: src\src\sdk\src\Cli\dotnet\dotnet.csproj (dotnet)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

#nullable disable

using Microsoft.Extensions.EnvironmentAbstractions;
using NuGet.Configuration;

namespace Microsoft.DotNet.Cli.ToolPackage;

internal class PackageLocation(
    FilePath? nugetConfig = null,
    DirectoryPath? rootConfigDirectory = null,
    string[] additionalFeeds = null,
    string[] sourceFeedOverrides = null,
    PackageSource[] packageSourceOverrides = null)
{
    public FilePath? NugetConfig { get; } = nugetConfig;
    public DirectoryPath? RootConfigDirectory { get; } = rootConfigDirectory;
    public string[] AdditionalFeeds { get; } = additionalFeeds ?? [];
    public string[] SourceFeedOverrides { get; } = sourceFeedOverrides ?? [];
    public PackageSource[] PackageSourceOverrides { get; } = packageSourceOverrides ?? [];
}