1 implementation of OuterBuild
NuGet.Build.Tasks.Console (1)
RestoreProjectAdapter.cs (1)
29
public ITargetFramework
OuterBuild
{ get; private set; }
20 references to OuterBuild
NuGet.Commands (20)
RestoreCommand\Utility\PackageSpecFactory.cs (20)
60
MSBuildStringUtility.Split($"{project.
OuterBuild
.GetProperty("RuntimeIdentifiers")};{project.
OuterBuild
.GetProperty("RuntimeIdentifier")}")
65
MSBuildStringUtility.Split(project.
OuterBuild
.GetProperty("RuntimeSupports"))
70
Version = GetProjectVersion(project.
OuterBuild
),
73
SdkVersion = GetSdkVersion(project.
OuterBuild
)
122
ITargetFramework outerBuild = project.
OuterBuild
;
153
project.TargetFrameworks.Count > 1 || !string.IsNullOrWhiteSpace(project.
OuterBuild
.GetProperty("TargetFrameworks"))),
199
ProjectStyle? projectStyleOrNull = GetProjectRestoreStyleFromProjectProperty(project.
OuterBuild
.GetProperty("RestoreProjectStyle"));
201
string? projectName = project.
OuterBuild
.GetProperty("MSBuildProjectName");
302
return project.
OuterBuild
.IsPropertyTrue("RestoreEnableAnalyzerAssets");
307
string? enableAudit = project.
OuterBuild
.GetProperty("NuGetAudit");
308
string? auditLevel = project.
OuterBuild
.GetProperty("NuGetAuditLevel");
310
HashSet<string>? suppressionItems = GetAuditSuppressions(project.
OuterBuild
);
341
string? projectAuditMode = project.
OuterBuild
.GetProperty("NuGetAuditMode");
466
() => UriUtility.GetAbsolutePath(project.Directory, project.
OuterBuild
.GetProperty("RestorePackagesPath")),
800
() => UriUtility.GetAbsolutePath(project.Directory, project.
OuterBuild
.GetProperty("RestoreRepositoryPath")),
804
string? solutionDir = project.
OuterBuild
.GetProperty("SolutionPath");
850
project.
OuterBuild
.SplitPropertyValueOrNull("RestoreSources"),
936
string? outputPath = project.
OuterBuild
.GetProperty("RestoreOutputPath") ?? project.
OuterBuild
.GetProperty("MSBuildProjectExtensionsPath");