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