Support for Visual studio 2022?
Is it possible to use analyzers with visual studio 2022?
Looks like adding InstallationTarget's as described here https://docs.microsoft.com/en-us/visualstudio/extensibility/migration/update-visual-studio-extension?view=vs-2022
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[15.0,17.0)">
<ProductArchitecture>x86</ProductArchitecture>
</InstallationTarget>
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[17.0,18.0)">
<ProductArchitecture>amd64</ProductArchitecture>
</InstallationTarget>
to manifest and changing code a bit, to be compatible with c# 7.3... https://github.com/tkaczz/RoslynClrHeapAllocationAnalyzer/commit/7486c945fcceab1b6adddd6c1ddabbfeb38438a2#diff-beb540fdb30200f7b46ee020fbec0614960cdd0ad21ddb5fb3b4691ba619edc1
...produces working vsix package compatible with vs2022.
Can we get this change into a pull request @tkaczz ?
@hcorion done
