2 instantiations of SystemState
Microsoft.Build.Tasks.Core (2)
AssemblyDependency\ResolveAssemblyReference.cs (1)
2243_cache = new SystemState();
SystemState.cs (1)
585SystemState retVal = new SystemState();
10 references to SystemState
Microsoft.Build.Tasks.Core (10)
AssemblyDependency\ResolveAssemblyReference.cs (5)
64internal SystemState _cache = null; 2233_cache = SystemState.DeserializeCache<SystemState>(_stateFile, Log); 2238_cache = SystemState.DeserializePrecomputedCaches(AssemblyInformationCachePaths, Log, fileExists, TaskEnvironment); 2506return SystemState.FileState.ImmutableFileLastModifiedMarker;
SystemState.cs (5)
583internal static SystemState DeserializePrecomputedCaches(ITaskItem[] stateFiles, TaskLoggingHelper log, FileExists fileExists, TaskEnvironment taskEnvironment) 585SystemState retVal = new SystemState(); 591SystemState sysState = null; 599sysState = DeserializeCache<SystemState>(stateFileAbsolutePath, log); 607sysState = DeserializeCache<SystemState>(stateFilePath, log);