4 implementations of GetGlobalProperties
Microsoft.Build (1)
BackEnd\Components\RequestBuilder\TaskHost.cs (1)
687public IReadOnlyDictionary<string, string> GetGlobalProperties()
Microsoft.Build.Tasks.Core (1)
AssemblyDependency\Node\RarNodeBuildEngine.cs (1)
227public IReadOnlyDictionary<string, string> GetGlobalProperties() => throw new NotImplementedException();
Microsoft.Build.UnitTests.Shared (1)
MockEngine.cs (1)
194public IReadOnlyDictionary<string, string> GetGlobalProperties()
MSBuild (1)
OutOfProcTaskHostNode.cs (1)
534public IReadOnlyDictionary<string, string> GetGlobalProperties()
5 references to GetGlobalProperties
Microsoft.Build (3)
BackEnd\Components\RequestBuilder\IntrinsicTasks\MSBuild.cs (1)
339else if (BuildEngine is IBuildEngine6 buildEngine6 && buildEngine6.GetGlobalProperties()
Instance\TaskFactories\TaskHostTask.cs (2)
418/// <see cref="IBuildEngine6.GetGlobalProperties"/> because those include per-request 426IReadOnlyDictionary<string, string> requestProperties = buildEngine6.GetGlobalProperties();
Microsoft.Build.Engine.UnitTests (1)
BackEnd\GetGlobalPropertiesTask.cs (1)
24IReadOnlyDictionary<string, string> globalProperties = engine6.GetGlobalProperties();
Microsoft.Build.Tasks.Core (1)
MSBuild.cs (1)
299else if (BuildEngine is IBuildEngine6 buildEngine6 && buildEngine6.GetGlobalProperties()