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
27 lines (21 loc) · 817 Bytes
/
PackageReference.cs
File metadata and controls
27 lines (21 loc) · 817 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
using System;
using System.Runtime.Versioning;
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; }
}
}