2012-11-11 23:18:17 +01:00
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
using Microsoft.VisualBasic;
|
|
|
|
|
|
|
|
|
|
namespace ChristianHelle.DeveloperTools.CodeGenerators.Resw.CustomTool
|
|
|
|
|
{
|
2012-11-12 13:03:28 +01:00
|
|
|
[Guid("92DFB543-7138-419B-99D9-90CC77607671")]
|
2012-11-11 23:18:17 +01:00
|
|
|
[ComVisible(true)]
|
|
|
|
|
public class ReswFileVisualBasicCodeGenerator : ReswFileCodeGenerator
|
|
|
|
|
{
|
|
|
|
|
public ReswFileVisualBasicCodeGenerator()
|
|
|
|
|
: base(new VBCodeProvider())
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override int DefaultExtension(out string pbstrDefaultExtension)
|
|
|
|
|
{
|
|
|
|
|
pbstrDefaultExtension = ".vb";
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|