24 references to AssemblyResolutionSearchAttemptContext
Microsoft.Build (9)
Logging\BinaryLogger\BuildEventArgsReader.cs (5)
538
var
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)
645
AssemblyResolutionSearchAttemptContext
unchangedContext = attempt.GetUnchangedContext(previous);
648
if ((unchangedContext &
AssemblyResolutionSearchAttemptContext
.SearchPathUnchanged) == 0)
653
if ((unchangedContext &
AssemblyResolutionSearchAttemptContext
.ParentAssemblyUnchanged) == 0)
661
if ((unchangedContext &
AssemblyResolutionSearchAttemptContext
.AssemblyFoldersExUnchanged) == 0)
Microsoft.Build.Framework (15)
AssemblyResolutionSearchTraceEventArgs.cs (15)
123
internal
AssemblyResolutionSearchAttemptContext
GetUnchangedContext(AssemblyResolutionSearchAttempt? previous)
125
AssemblyResolutionSearchAttemptContext
unchangedContext =
AssemblyResolutionSearchAttemptContext
.None;
128
unchangedContext |=
AssemblyResolutionSearchAttemptContext
.SearchPathUnchanged;
133
unchangedContext |=
AssemblyResolutionSearchAttemptContext
.ParentAssemblyUnchanged;
138
unchangedContext |=
AssemblyResolutionSearchAttemptContext
.AssemblyFoldersExUnchanged;
146
AssemblyResolutionSearchAttemptContext
unchangedContext = GetUnchangedContext(previous);
149
if ((unchangedContext &
AssemblyResolutionSearchAttemptContext
.SearchPathUnchanged) == 0)
154
if ((unchangedContext &
AssemblyResolutionSearchAttemptContext
.ParentAssemblyUnchanged) == 0)
162
if ((unchangedContext &
AssemblyResolutionSearchAttemptContext
.AssemblyFoldersExUnchanged) == 0)
170
var
unchangedContext = (
AssemblyResolutionSearchAttemptContext
)reader.ReadByte();
172
string? searchPath = (unchangedContext &
AssemblyResolutionSearchAttemptContext
.SearchPathUnchanged) != 0
175
string? parentAssembly = (unchangedContext &
AssemblyResolutionSearchAttemptContext
.ParentAssemblyUnchanged) != 0
181
bool isAssemblyFoldersExSearch = (unchangedContext &
AssemblyResolutionSearchAttemptContext
.AssemblyFoldersExUnchanged) != 0