started wokring on internal code generator
This commit is contained in:
+22
@@ -0,0 +1,22 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user