Skip to content
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

Add .editorconfig file #404

Merged
merged 30 commits into from
Oct 15, 2022
Merged

Add .editorconfig file #404

merged 30 commits into from
Oct 15, 2022

Conversation

Sergio0694
Copy link
Owner

@Sergio0694 Sergio0694 commented Oct 13, 2022

Description

This PR ports the .editorconfig file from the .NET Community Toolkit (https://github.com/CommunityToolkit/dotnet).

Note: just a draft for now because this doesn't seem to be working, for whatever reason. If I open the solution and build and intentionally write code that doesn't respect the .editorconfig file (eg. a local using var), I get no warnings at all 🤔

@Nirmal4G this seems like your cup of team, any ideas what might be wrong with this? Could use some help 😄

@Sergio0694 Sergio0694 added help wanted 🆘 Extra attention is needed maintenance ⚙️ Issues/PRs about maintenance/CI work labels Oct 13, 2022
Copy link
Contributor

@Nirmal4G Nirmal4G left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If I open the solution and build and intentionally write code that doesn't respect the .editorconfig file (eg. a local using var), I get no warnings at all 🤔

Could be just a cache issue on Compiler side. I don't have the repo cloned. And I'm replying from mobile. I'll take a look at it soon.

Directory.Build.props Outdated Show resolved Hide resolved
@Sergio0694
Copy link
Owner Author

I don't think it's VS caching, as I've also tried on different machines and VS versions, and I never got the warnings. I'm not sure what's different than in the Toolkit repo 🤔

Copy link
Contributor

@Nirmal4G Nirmal4G left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So, there are 3 issues at play here:

  1. XAML files placed inside C# files, leading to dotnet rules not applying to C# files.

  2. Code style analyzer does not match the compiler's version leading to S.C.I version mismatch.

  3. An unrelated issue but a warning for missing Appx bundling platforms appears for a sample UWP project.

This patch fixes all of that: 18e2a7e

But I can't push to the PR. You can get my patch from my fork...

git switch dev/editorconfig
git pull --ff-only https://github.com/Nirmal4G/ComputeSharp dev/editorconfig
git push

@Sergio0694
Copy link
Owner Author

Ooh, thank you! Yeah using the explicit Roslyn version is annoying, unfortunately we're stuck with that until VS 17.4 is out 🥲
Thank you for spotting that issue with .editorconfig too! I'll cherry-pick your commit and try this out again 😄

@Sergio0694
Copy link
Owner Author

Sergio0694 commented Oct 14, 2022

Hey @Nirmal4G, so it seems .editorconfig is working now and I did get a bunch of errors, which I fixed in b9c1f2c. I still have a few questions though and there's some things I'm seeing that I don't understand, would you be able to help?

  • In lots of files, if I open them in VS, I do see some warnings (eg. I have some var uses here and there, etc.). But, if I build the whole solution from VS, I get no warnings/errors. I don't understand why would those errors only show up in IntelliSense but not in the build output? Is there a way to enforce those too?
  • Is there an easy way to apply just the encoding/newline options to all files? Essentially I'd like to just have a commit updating all files to use UTF8 encoding (without the BOM), and using LF instead of CLRF, and removing the trailing newline. Nevermind, found dotnet format whitespace, that did the trick 😄

Thank you! 😊

Copy link
Contributor

@Nirmal4G Nirmal4G left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Running dotnet format in the context of an MSBuild solution lead to miss some files that were not included in the solution and its projects. You should run with --folder for the 2nd time to verify.

Here's the patch with missing files formatted: 1370019

It's in my branch, so same process as before.

.editorconfig Outdated Show resolved Hide resolved
@Nirmal4G
Copy link
Contributor

Nirmal4G commented Oct 14, 2022

In lots of files, if I open them in VS, I do see some warnings (e.g. I have some var uses here and there, etc.). But, if I build the whole solution from VS, I get no warnings/errors. I don't understand why those errors would only show up in IntelliSense but not in the build output? Is there a way to enforce those too?

It might be due to differences in MSBuild build, VS DesignTime build and a VS regular build. Yes, they differ subtly. Most of the time It should work the same across different build contexts. I'll look into that.

@Sergio0694
Copy link
Owner Author

"It might be due to differences in MSBuild build, VS DesignTime build and a VS regular build. Yes, they differ subtly. Most of the time It should work the same across different build contexts. I'll look into that."

Thank you! Yeah, I'd really like for all of those warnings to always show up so I can properly enforce them everywhere 🙂

.editorconfig Outdated Show resolved Hide resolved
@Sergio0694
Copy link
Owner Author

Sergio0694 commented Oct 15, 2022

@Youssef1313 I've updated my .editorconfig with some better rules (eg. I fixed the fields naming convention), but if I run dotnet format now I also get a bunch of errors about it not being able to load some projects correctly or not being able to apply some analyzers, and as a result I only get the fixes in some files (eg. 170 something, locally), and not in all of them. I'm sure there's other bits in files that haven't been loaded that it's missing. I guess this might be related to what @Nirmal4G said about dotnet format not working well on projects that need MSBuild? Is there a way around this issue? 🤔

Note: it's not just about it missing some files, it's also not applying all fixes. Eg. it's not renaming fields correctly. If I open the solution in VS after running it, I still see a bunch of IntelliSense errors for fields named with the wrong style.

@Youssef1313
Copy link
Contributor

@Sergio0694 What errors about "loading some projects correctly" do you see?

@Sergio0694
Copy link
Owner Author

Sergio0694 commented Oct 15, 2022

@Youssef1313 I get all of this 😥

`dotnet format` output (click to expand):
C:\Users\sergiopedri\GitHub\ComputeSharp>dotnet format ComputeSharp.sln --no-restore
Warnings were encountered while loading the workspace. Set the verbosity option to the 'diagnostic' level to log warnings.
Required references did not load for ComputeSharp.Uwp or referenced project. Run `dotnet restore` prior to formatting.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix CSharpAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicAddImportCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix GenerateTypeCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicFullyQualifyCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1007. Code fix VisualBasicSpellCheckCodeFixProvider doesn't support Fix All in Solution.
Required references did not load for ComputeSharp.Uwp or referenced project. Run `dotnet restore` prior to formatting.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.
Unable to fix IDE1006. Code fix NamingStyleCodeFixProvider doesn't support Fix All in Solution.

@Sergio0694 Sergio0694 marked this pull request as ready for review October 15, 2022 15:49
@Sergio0694
Copy link
Owner Author

I've now enabled all analyzers (just disabled a few I didn't like), and fixed all code to produce 0 warnings 🎉

@Youssef1313 if you take another look let me know if everything looks fine to you! 😄

.editorconfig Outdated Show resolved Hide resolved
.editorconfig Outdated Show resolved Hide resolved
Sergio0694 and others added 4 commits October 15, 2022 09:10
There are 3 issues at play here:

1. XAML files placed inside C# files, leading to dotnet rules not applying to C# files.

2. Code style analyzer not matching the compiler's version.

3. Unrelated but warning for missing Appx bundling platforms appears for a sample UWP project.

This patch fixes all of that.
@Sergio0694 Sergio0694 merged commit 0e0830c into main Oct 15, 2022
@Sergio0694 Sergio0694 deleted the dev/editorconfig branch October 15, 2022 17:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
help wanted 🆘 Extra attention is needed maintenance ⚙️ Issues/PRs about maintenance/CI work
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants