48 references to All
Microsoft.Build.NuGetSdkResolver (1)
RestoreRunnerEx.cs (1)
72
SuppressParent = LibraryIncludeFlags.
All
,
NuGet.Build.Tasks.Console (2)
MSBuildStaticGraphRestore.cs (2)
382
IncludeType = GetLibraryIncludeFlags(packageReferenceItem.GetProperty("IncludeAssets"), LibraryIncludeFlags.
All
) & ~GetLibraryIncludeFlags(packageReferenceItem.GetProperty("ExcludeAssets"), LibraryIncludeFlags.None),
475
IncludeAssets = GetLibraryIncludeFlags(projectReferenceItem.GetProperty("IncludeAssets"), LibraryIncludeFlags.
All
),
NuGet.CommandLine.XPlat (5)
Commands\PackageReferenceCommands\AddPackageReferenceCommandRunner.cs (3)
373
includeType == LibraryIncludeFlags.
All
)
375
suppressParent = LibraryIncludeFlags.
All
;
376
includeType = LibraryIncludeFlags.
All
& ~LibraryIncludeFlags.Compile;
Utility\MSBuildAPIUtility.cs (2)
491
if (libraryDependency.IncludeType != LibraryIncludeFlags.
All
)
689
if (libraryDependency.IncludeType != LibraryIncludeFlags.
All
)
NuGet.Commands (17)
CommandRunners\PackCommandRunner.cs (3)
314
if (dependency.IncludeType == LibraryIncludeFlags.None || dependency.SuppressParent == LibraryIncludeFlags.
All
)
345
if (effectiveInclude == LibraryIncludeFlags.
All
)
347
includes.Add(LibraryIncludeFlags.
All
.ToString());
RestoreCommand\CompatibilityChecker.cs (2)
106
packageIncludeFlags = LibraryIncludeFlags.
All
;
430
dependencyType: LibraryIncludeFlags.
All
);
RestoreCommand\DependencyGraphResolver.cs (4)
433
if ((childLibraryDependencyIndex != LibraryDependencyIndex.Project && childLibraryDependency.SuppressParent == LibraryIncludeFlags.
All
)
562
&& childLibraryDependency.SuppressParent != LibraryIncludeFlags.
All
595
&& childLibraryDependency.SuppressParent != LibraryIncludeFlags.
All
1283
if (dependency.SuppressParent == LibraryIncludeFlags.
All
)
RestoreCommand\LockFileBuilder.cs (2)
550
LibraryIncludeFlags suppressParent = LibraryIncludeFlags.
All
;
560
if (suppressParent == LibraryIncludeFlags.
All
)
RestoreCommand\Utility\IncludeFlagUtils.cs (1)
165
&& dependency.SuppressParent != LibraryIncludeFlags.
All
)
RestoreCommand\Utility\LockFileUtils.cs (1)
527
&& d.SuppressParent != LibraryIncludeFlags.
All
RestoreCommand\Utility\MSBuildRestoreUtility.cs (2)
135
var includeFlags = GetIncludeFlags(includeAssets, LibraryIncludeFlags.
All
);
150
dependency.IncludeAssets = GetIncludeFlags(includeAssets, LibraryIncludeFlags.
All
);
RestoreCommand\Utility\PackageSpecFactory.cs (2)
765
IncludeAssets = GetLibraryIncludeFlags(projectReferenceItem.GetMetadata("IncludeAssets"), LibraryIncludeFlags.
All
),
819
IncludeType = GetLibraryIncludeFlags(packageReferenceItem.GetMetadata("IncludeAssets"), LibraryIncludeFlags.
All
) & ~GetLibraryIncludeFlags(packageReferenceItem.GetMetadata("ExcludeAssets"), LibraryIncludeFlags.None),
NuGet.DependencyResolver.Core (1)
Remote\RemoteDependencyWalker.cs (1)
145
|| dependency.SuppressParent != LibraryIncludeFlags.
All
)
NuGet.LibraryModel (4)
LibraryDependency.cs (1)
20
public LibraryIncludeFlags IncludeType { get; init; } = LibraryIncludeFlags.
All
;
LibraryIncludeFlagUtils.cs (3)
22
public static readonly LibraryIncludeFlags NoContent = LibraryIncludeFlags.
All
& ~LibraryIncludeFlags.ContentFiles;
41
result |= LibraryIncludeFlags.
All
;
82
if (flags == LibraryIncludeFlags.
All
)
NuGet.PackageManagement (6)
BuildIntegratedInstallationContext.cs (1)
42
public LibraryIncludeFlags IncludeType { get; set; } = LibraryIncludeFlags.
All
;
BuildIntegratedPackageReference.cs (2)
33
developmentDependency: dependency?.SuppressParent == LibraryIncludeFlags.
All
,
54
developmentDependency: dependency?.SuppressParent == LibraryIncludeFlags.
All
,
BuildIntegration\BuildIntegratedRestoreUtility.cs (3)
177
dependency.IncludeType == LibraryIncludeFlags.
All
)
179
var includeType = LibraryIncludeFlags.
All
& ~LibraryIncludeFlags.Compile;
183
SuppressParent = LibraryIncludeFlags.
All
NuGet.ProjectModel (12)
JsonPackageSpecReader.Utf8JsonStreamReader.cs (3)
210
var dependencyIncludeFlagsValue = LibraryIncludeFlags.
All
;
333
var dependencyIncludeFlagsValue = LibraryIncludeFlags.
All
;
1370
defaultFlags: LibraryIncludeFlags.
All
),
PackageSpecReferenceDependencyProvider.cs (1)
405
SuppressParent = isPruned ? LibraryIncludeFlags.
All
: dependency.SuppressParent,
PackageSpecWriter.cs (4)
250
if (project.IncludeAssets != LibraryIncludeFlags.
All
)
374
var expandedMode = dependency.IncludeType != LibraryIncludeFlags.
All
390
if (dependency.IncludeType != LibraryIncludeFlags.
All
)
470
if (dependency.IncludeType != LibraryIncludeFlags.
All
)
ProjectLockFile\PackagesLockFileUtilities.cs (3)
259
if (visitedP2PReference.Add(reference.ProjectUniqueName) && reference.PrivateAssets != LibraryIncludeFlags.
All
)
476
&& dep.SuppressParent != LibraryIncludeFlags.
All
479
var transitivelyFlowingProjectReferences = projectRestoreReferences.Where(e => e.PrivateAssets != LibraryIncludeFlags.
All
);
ProjectRestoreReference.cs (1)
24
public LibraryIncludeFlags IncludeAssets { get; set; } = LibraryIncludeFlags.
All
;