Contentless/Contentless/NuGetHelper.cs

15 lines
337 B
C#
Raw Normal View History

2023-12-21 16:26:35 +01:00
using NuGet.Configuration;
namespace Contentless;
public class NuGetHelper
{
private readonly ISettings _settings;
public NuGetHelper(string projectFolder)
{
_settings = Settings.LoadDefaultSettings(projectFolder);
}
public string PackageFolder => SettingsUtility.GetGlobalPackagesFolder(_settings);
}