-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPackageProjectProperties.cs
More file actions
37 lines (36 loc) · 1.47 KB
/
Copy pathPackageProjectProperties.cs
File metadata and controls
37 lines (36 loc) · 1.47 KB
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
32
33
34
35
36
37
using System;
namespace CnSharp.VisualStudio.Extensions.Projects
{
/// <summary>
/// Package properties of project,see <PropertyGroup></PropertyGroup> section in *proj file.
/// </summary>
public class PackageProjectProperties
{
public bool GeneratePackageOnBuild { get; set; }
public bool IncludeSymbols { get; set; }
public bool PackageRequireLicenseAcceptance { get; set; }
public string AssemblyVersion { get; set; }
public string Authors { get; set; }
public string Company { get; set; }
public string Copyright { get; set; }
public string Description { get; set; }
public string FileVersion { get; set; }
public string Name { get; set; }
public string NeutralLanguage { get; set; }
public string PackageIcon { get; set; }
[Obsolete]
public string PackageIconUrl { get; set; }
public string PackageId { get; set; }
public string PackageLicenseExpression { get; set; }
[Obsolete]
public string PackageLicenseUrl { get; set; }
public string PackageProjectUrl { get; set; }
public string PackageReadmeFile { get; set; }
public string PackageReleaseNotes { get; set; }
public string PackageTags { get; set; }
public string Product { get; set; }
public string RepositoryType { get; set; }
public string RepositoryUrl { get; set; }
public string Version { get; set; }
}
}