introduction of nuget packages as plugins support
This commit is contained in:
10
Torch.API/WebAPI/Plugins/Package.cs
Normal file
10
Torch.API/WebAPI/Plugins/Package.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System.Collections.Generic;
|
||||
using NuGet.DependencyResolver;
|
||||
using SemanticVersioning;
|
||||
|
||||
namespace Torch.API.WebAPI.Plugins;
|
||||
|
||||
public record Package(string Name, Version Version, IReadOnlySet<PackageDependency> Dependencies)
|
||||
{
|
||||
internal GraphItem<RemoteResolveResult> Graph { get; init; }
|
||||
}
|
Reference in New Issue
Block a user