You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The code used to filter the target projects to only those that use the generator is currently deadlocking on certain projects, so disabled for now.
We should figure out a non locking way of getting the project information for projects that use the generator.
The below code is deadlocking the UI on certain projects:
// check if the args contain the project as an analyzer refforeach(vararginawaittargetProject.GetCompilationArgumentsAsync().ConfigureAwait(false)){if(arg.StartsWith("/analyzer",StringComparison.OrdinalIgnoreCase)&&arg.EndsWith(target,StringComparison.OrdinalIgnoreCase)){targetProjects.Add(targetProject);}}
The text was updated successfully, but these errors were encountered:
The code used to filter the target projects to only those that use the generator is currently deadlocking on certain projects, so disabled for now.
We should figure out a non locking way of getting the project information for projects that use the generator.
The below code is deadlocking the UI on certain projects:
The text was updated successfully, but these errors were encountered: