After setting up my .NET Core + Angular template project and installing the StyleCop extension, I encountered an issue when adding a file (.ts) to my Angular project (Clientapp/src/app). The following code was automatically generated:
<ItemGroup>
<None Remove="ClientApp\src\app\counter\file.ts" />
</ItemGroup>
<ItemGroup>
<TypeScriptCompile Include="ClientApp\src\app\counter\file.ts" />
</ItemGroup>
Upon trying to run StyleCop by right-clicking on the project, a popup error message appeared stating: "Specified method is not supported."
Removing the above code from the .proj file resolved the issue with StyleCop. Does anyone have any suggestions on how to address this problem?