2 writes to Results
Microsoft.Build (2)
BackEnd\Components\Caching\ResultsCache.cs (1)
220response.Results = new BuildResult(request, allResults, targetsToAddResultsFor.ToArray(), null);
BackEnd\Components\Caching\ResultsCacheResponse.cs (1)
56Results = null;
11 references to Results
Microsoft.Build (4)
BackEnd\Components\BuildRequestEngine\BuildRequestEngine.cs (3)
547currentEntry.ReportResult(cacheResponse.Results); 1222_nodeLoggingContext.LogRequestHandledFromCache(newRequest, _configCache[newRequest.ConfigurationId], response.Results); 1232existingResultsToReport.Add(response.Results);
BackEnd\Components\Scheduler\Scheduler.cs (1)
1954return GetResponseForResult(nodeForResults, request, resultsResponse.Results);
Microsoft.Build.Engine.UnitTests (7)
BackEnd\ResultsCache_Tests.cs (7)
190Assert.True(AreResultsIdenticalForTarget(result, response.Results, "testTarget2")); 191Assert.False(response.Results.HasResultsForTarget("testTarget")); 192Assert.Equal(BuildResultCode.Success, response.Results.OverallResult); 333Assert.Equal("Value1", cachedResponseWithSubsetFlag1.Results.ProjectStateAfterBuild.GetPropertyValue("property1")); 334Assert.Equal("Value2", cachedResponseWithSubsetFlag1.Results.ProjectStateAfterBuild.GetPropertyValue("property2")); 338Assert.Equal("Value1", cachedResponseWithSubsetFlag2.Results.ProjectStateAfterBuild.GetPropertyValue("property1")); 339Assert.Equal("", cachedResponseWithSubsetFlag2.Results.ProjectStateAfterBuild.GetPropertyValue("property2"));