24 references to AssemblyResolutionSearchAttemptContext
Microsoft.Build (9)
Logging\BinaryLogger\BuildEventArgsReader.cs (5)
538var unchangedContext = (AssemblyResolutionSearchAttemptContext)_binaryReader.ReadByte(); 541(unchangedContext & AssemblyResolutionSearchAttemptContext.SearchPathUnchanged) != 0 ? previous?.SearchPath : ReadOptionalString(), 542(unchangedContext & AssemblyResolutionSearchAttemptContext.ParentAssemblyUnchanged) != 0 ? previous?.ParentAssembly : ReadOptionalString(), 546(unchangedContext & AssemblyResolutionSearchAttemptContext.AssemblyFoldersExUnchanged) != 0 ? previous?.IsAssemblyFoldersExSearch ?? false : ReadBoolean());
Logging\BinaryLogger\BuildEventArgsWriter.cs (4)
645AssemblyResolutionSearchAttemptContext unchangedContext = attempt.GetUnchangedContext(previous); 648if ((unchangedContext & AssemblyResolutionSearchAttemptContext.SearchPathUnchanged) == 0) 653if ((unchangedContext & AssemblyResolutionSearchAttemptContext.ParentAssemblyUnchanged) == 0) 661if ((unchangedContext & AssemblyResolutionSearchAttemptContext.AssemblyFoldersExUnchanged) == 0)
Microsoft.Build.Framework (15)
AssemblyResolutionSearchTraceEventArgs.cs (15)
123internal AssemblyResolutionSearchAttemptContext GetUnchangedContext(AssemblyResolutionSearchAttempt? previous) 125AssemblyResolutionSearchAttemptContext unchangedContext = AssemblyResolutionSearchAttemptContext.None; 128unchangedContext |= AssemblyResolutionSearchAttemptContext.SearchPathUnchanged; 133unchangedContext |= AssemblyResolutionSearchAttemptContext.ParentAssemblyUnchanged; 138unchangedContext |= AssemblyResolutionSearchAttemptContext.AssemblyFoldersExUnchanged; 146AssemblyResolutionSearchAttemptContext unchangedContext = GetUnchangedContext(previous); 149if ((unchangedContext & AssemblyResolutionSearchAttemptContext.SearchPathUnchanged) == 0) 154if ((unchangedContext & AssemblyResolutionSearchAttemptContext.ParentAssemblyUnchanged) == 0) 162if ((unchangedContext & AssemblyResolutionSearchAttemptContext.AssemblyFoldersExUnchanged) == 0) 170var unchangedContext = (AssemblyResolutionSearchAttemptContext)reader.ReadByte(); 172string? searchPath = (unchangedContext & AssemblyResolutionSearchAttemptContext.SearchPathUnchanged) != 0 175string? parentAssembly = (unchangedContext & AssemblyResolutionSearchAttemptContext.ParentAssemblyUnchanged) != 0 181bool isAssemblyFoldersExSearch = (unchangedContext & AssemblyResolutionSearchAttemptContext.AssemblyFoldersExUnchanged) != 0