22 lines
674 B
C#
22 lines
674 B
C#
using System.CodeDom;
|
|
using System.Runtime.InteropServices;
|
|
using Microsoft.VisualBasic;
|
|
|
|
namespace ChristianHelle.DeveloperTools.CodeGenerators.Resw.VSPackage.CustomTool
|
|
{
|
|
[Guid("6C6AC14F-9B11-47C1-BC90-DFBFB89B1CB8")]
|
|
[ComVisible(true)]
|
|
public class ReswFileVisualBasicCodeGeneratorInternal : ReswFileCodeGenerator
|
|
{
|
|
public ReswFileVisualBasicCodeGeneratorInternal()
|
|
: base(new VBCodeProvider(), MemberAttributes.Assembly)
|
|
{
|
|
}
|
|
|
|
public override int DefaultExtension(out string pbstrDefaultExtension)
|
|
{
|
|
pbstrDefaultExtension = ".vb";
|
|
return 0;
|
|
}
|
|
}
|
|
} |