-
Notifications
You must be signed in to change notification settings - Fork 392
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Perf improvements for CSharpProjectKernel #3562
Perf improvements for CSharpProjectKernel #3562
Conversation
@@ -24,7 +23,7 @@ public abstract class WorkspaceServerTestsCore : IDisposable | |||
ITestOutputHelper output) | |||
{ | |||
_prebuildFixture = prebuildFixture; | |||
_disposables.Add(output.SubscribeToPocketLogger()); | |||
// _disposables.Add(output.SubscribeToPocketLogger()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be uncommented? Can this be deleted if it not needed?
metadataReferences: GetMetadataReferences(projectBuildInfo), | ||
analyzerReferences: GetAnalyzerReferences(projectBuildInfo, workspace), | ||
analyzerReferences: null, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this intentional? Are we ignoring analyzers because while analyzers can block build for projects that otherwise compile, the opposite is not true (i.e. analyzers can't cause projects that fail to build because of other build failures to build successfully)?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Analyzers are not supported for security reasons.
No description provided.