21 references to GetPropertyValue
dotnet (1)
Extensions\ProjectExtensions.cs (1)
42return project.GetPropertyValue(propertyName)
Microsoft.Build (3)
Construction\Solution\SolutionProjectGenerator.cs (1)
2241string referencedWebProjectGuid = msbuildProject.GetPropertyValue("SourceWebProject");
Instance\ImmutableProjectCollections\ImmutableProjectPropertyCollectionConverter.cs (1)
47unescapedValue = _linkedProject.GetPropertyValue(key);
ObjectModelRemoting\DefinitionObjectsLinks\ProjectLink.cs (1)
167/// Facilitate remoting the <see cref="Project.GetPropertyValue"/>.
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (3)
Build\ProjectBuildManager.cs (3)
191return project?.GetPropertyValue(PropertyNames.TargetPath); 212var targetFrameworkValue = project.GetPropertyValue(PropertyNames.TargetFramework); 213var targetFrameworksValue = project.GetPropertyValue(PropertyNames.TargetFrameworks);
MSBuild (2)
XMake.cs (2)
1130outputStream.WriteLine(project.GetPropertyValue(getProperty[0])); 1135jsonOutputFormatter.AddPropertiesInJsonFormat(getProperty, property => project.GetPropertyValue(property));
NuGet.CommandLine.XPlat (12)
Commands\PackageReferenceCommands\ListPackage\ListPackageCommandRunner.cs (2)
98var projectName = project.GetPropertyValue(ProjectName); 108var assetsPath = project.GetPropertyValue(ProjectAssetsFile);
Commands\Why\WhyCommandRunner.cs (3)
114string usingNetSdk = project.GetPropertyValue("UsingMicrosoftNETSdk"); 127string? assetsFilePath = project.GetPropertyValue(ProjectAssetsFile); 146project.GetPropertyValue("MSBuildProjectName")));
Utility\MSBuildAPIUtility.cs (7)
89project.GetPropertyValue("ManagePackageVersionsCentrally"), 204string directoryPackagesPropsPath = project.GetPropertyValue(DirectoryPackagesPropsPathPropertyName); 433string directoryPackagesPropsPath = project.GetPropertyValue(DirectoryPackagesPropsPathPropertyName); 481Logger.LogInformation(string.Format(CultureInfo.CurrentCulture, Strings.Info_AddPkgCPM, libraryDependency.Name, itemGroup.ContainingProject.FullPath, project.GetPropertyValue(DirectoryPackagesPropsPathPropertyName))); 710return (project.GetPropertyValue(RESTORE_STYLE_TAG) == "PackageReference" || 712project.GetPropertyValue(NUGET_STYLE_TAG) == "PackageReference" || 713project.GetPropertyValue(ASSETS_FILE_PATH_TAG) != "");