ok now it works

This commit is contained in:
zznty
2024-10-22 21:11:33 +07:00
parent 8f7fef8857
commit bf3eaedf62
46 changed files with 1150 additions and 244 deletions

View File

@@ -0,0 +1,13 @@
using System.Collections.Immutable;
using CringePlugins.Resolver;
using NuGet;
using NuGet.Models;
namespace CringePlugins.Config;
public record PackagesConfig(ImmutableArray<PackageSource> Sources, ImmutableArray<PackageReference> Packages)
{
public static PackagesConfig Default { get; } = new([
new(string.Empty, "https://api.nuget.org/v3/index.json")
], []);
}