forked from scriptcs/scriptcs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackageReference.cs
More file actions
31 lines (24 loc) · 860 Bytes
/
PackageReference.cs
File metadata and controls
31 lines (24 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using System;
using System.Runtime.Versioning;
using ScriptCs.Contracts;
namespace ScriptCs.Package
{
public class PackageReference : IPackageReference
{
public PackageReference(string packageId, FrameworkName frameworkName, Version version)
: this(packageId, frameworkName, version, null)
{
}
public PackageReference(string packageId, FrameworkName frameworkName, Version version, string specialVersion)
{
FrameworkName = frameworkName;
PackageId = packageId;
Version = version;
SpecialVersion = specialVersion;
}
public string PackageId { get; private set; }
public FrameworkName FrameworkName { get; private set; }
public Version Version { get; set; }
public string SpecialVersion { get; set; }
}
}