ExtensibilityTemplatePack
ExtensibilityTemplatePack copied to clipboard
Project name with [dot] causes error
If I create a project with name MyProject.VSIX, I have to fix this first to make it compile.
I can fix it, but I wonder if the template can be improved.

The way I fixed this was:
- Update
VSCommandTable.vsctand replace the dot/period with underscores:
<Commands package="MyProject_VSIX">
</Commands>
<Symbols>
<GuidSymbol name="MyProject_VSIX" value="{...}">
</GuidSymbol>
</Symbols>
- Right-click on the file and select
Run Custom Tool - Update
MyProject.VSIXPackage.cs:
[Guid(PackageGuids.MyProject_VSIXString)]
public sealed class MyProject_VSIXPackage : ToolkitPackage