-
Notifications
You must be signed in to change notification settings - Fork 749
Expand file tree
/
Copy pathIPackTaskRequest.cs
More file actions
82 lines (80 loc) · 3.19 KB
/
IPackTaskRequest.cs
File metadata and controls
82 lines (80 loc) · 3.19 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using Microsoft.Build.Framework;
using NuGet.Commands;
using ILogger = NuGet.Common.ILogger;
namespace NuGet.Build.Tasks.Pack
{
/// <summary>
/// All of the properties provided by MSBuild to execute pack.
/// </summary>
/// <typeparam name="TItem">
/// The item type. This will either be <see cref="ITaskItem"/> or a <see cref="IMSBuildItem"/>.
/// </typeparam>
public interface IPackTaskRequest<TItem>
{
string[] AllowedOutputExtensionsInPackageBuildOutputFolder { get; }
string[] AllowedOutputExtensionsInSymbolsPackageBuildOutputFolder { get; }
string AssemblyName { get; }
string[] Authors { get; }
TItem[] BuildOutputInPackage { get; }
string[] BuildOutputFolders { get; }
string[] ContentTargetFolders { get; }
bool ContinuePackingAfterGeneratingNuspec { get; }
string Copyright { get; }
string Description { get; }
bool DevelopmentDependency { get; }
TItem[] FrameworkAssemblyReferences { get; }
TItem[] FrameworksWithSuppressedDependencies { get; }
string IconUrl { get; }
bool IncludeBuildOutput { get; }
bool IncludeSource { get; }
bool IncludeSymbols { get; }
bool InstallPackageToOutputPath { get; }
bool IsTool { get; }
string LicenseUrl { get; }
ILogger Logger { get; }
string MinClientVersion { get; }
bool NoDefaultExcludes { get; }
bool NoPackageAnalysis { get; }
string NoWarn { get; }
string NuspecBasePath { get; }
string NuspecFile { get; }
string[] NuspecProperties { get; }
string NuspecOutputPath { get; }
bool OutputFileNamesWithoutVersion { get; }
TItem[] PackageFiles { get; }
TItem[] PackageFilesToExclude { get; }
string PackageId { get; }
string PackageOutputPath { get; }
string[] PackageTypes { get; }
string PackageVersion { get; }
TItem PackItem { get; }
TItem[] ProjectReferencesWithVersions { get; }
string ProjectUrl { get; }
string ReleaseNotes { get; }
string RepositoryType { get; }
string RepositoryUrl { get; }
string RepositoryBranch { get; }
string RepositoryCommit { get; }
bool RequireLicenseAcceptance { get; }
string RestoreOutputPath { get; }
bool Serviceable { get; }
TItem[] SourceFiles { get; }
string SymbolPackageFormat { get; }
string[] Tags { get; }
string[] TargetFrameworks { get; }
TItem[] TargetPathsToSymbols { get; }
string Title { get; }
string TreatWarningsAsErrors { get; }
string WarningsAsErrors { get; }
string WarningsNotAsErrors { get; }
string PackageLicenseExpression { get; }
string PackageLicenseExpressionVersion { get; }
string PackageLicenseFile { get; }
string Readme { get; }
bool Deterministic { get; }
string DeterministicTimestamp { get; }
string PackageIcon { get; }
}
}