pschelpdesk/Vendor/Prise/AssemblyLoading/PlatformDependency.cs
2024-11-04 20:45:34 +01:00

12 lines
326 B
C#

using NuGet.Versioning;
namespace Prise.AssemblyLoading
{
public class PlatformDependency
{
public string DependencyNameWithoutExtension { get; set; }
public SemanticVersion SemVer { get; set; }
public string DependencyPath { get; set; }
public string ProbingPath { get; set; }
}
}