-
Notifications
You must be signed in to change notification settings - Fork 278
use some pattern matching #6045
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
Conversation
src/Analyzers/MSTest.Analyzers.CodeFixes/AvoidExpectedExceptionAttributeFixer.cs
Outdated
Show resolved
Hide resolved
src/Analyzers/MSTest.Analyzers/TestContextShouldBeValidAnalyzer.cs
Outdated
Show resolved
Hide resolved
# Conflicts: # src/Analyzers/MSTest.SourceGeneration/Helpers/SystemPolyfills.cs # src/Platform/Microsoft.Testing.Platform/OutputDevice/Terminal/TerminalTestReporter.cs
@SimonCropp what's the proper fix for:
|
src/Analyzers/MSTest.SourceGeneration/MSTest.SourceGeneration.csproj
Outdated
Show resolved
Hide resolved
@@ -46,6 +48,7 @@ This package provides the C# source generators for MSTest test framework.]]> | |||
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" PrivateAssets="all" /> | |||
<!-- Analyzers to help write analyzers/generators --> | |||
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" PrivateAssets="all" /> | |||
<PackageReference Include="Polyfill" PrivateAssets="all" /> |
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.
This one is likely to cause us issues, if not now, later. This project targets netstandard2.0 and has IVT exposed to test project (not netstandard2.0). So likely going to cause us issues, unless either IVT is removed and make the needed members public, or EmbeddedAttribute is used.
Closing this one too for now, we need to wait for the |
Pull request was closed
this is purely a personal preference