12 lines
326 B
C#
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; }
|
|
}
|
|
} |