Create VSIX package and move all custom tool code into the VSPackage project

This commit is contained in:
Christian Resma Helle
2013-05-26 00:10:55 +02:00
parent 95e1d1aa39
commit b52fae47fc
46 changed files with 2764 additions and 42 deletions
@@ -0,0 +1,21 @@
using System.Runtime.InteropServices;
using Microsoft.CSharp;
namespace ChristianHelle.DeveloperTools.CodeGenerators.Resw.VSPackage.CustomTool
{
[Guid("98983F6D-BC77-46AC-BA5A-8D9E8763F0D2")]
[ComVisible(true)]
public class ReswFileCSharpCodeGenerator : ReswFileCodeGenerator
{
public ReswFileCSharpCodeGenerator()
: base(new CSharpCodeProvider())
{
}
public override int DefaultExtension(out string pbstrDefaultExtension)
{
pbstrDefaultExtension = ".cs";
return 0;
}
}
}