Added Support for Visual Studio 2013 and Generating the class as Internal (C#) or Friend (VB)

This commit is contained in:
Christian Resma Helle
2013-08-15 14:52:10 +02:00
parent 2f134acc5e
commit 44b1f1ffd0
14 changed files with 136 additions and 35 deletions
@@ -1,4 +1,4 @@
using System.CodeDom;
using System.Reflection;
using System.Runtime.InteropServices;
using Microsoft.VisualBasic;
@@ -9,7 +9,7 @@ namespace ChristianHelle.DeveloperTools.CodeGenerators.Resw.VSPackage.CustomTool
public class ReswFileVisualBasicCodeGeneratorInternal : ReswFileCodeGenerator
{
public ReswFileVisualBasicCodeGeneratorInternal()
: base(new VBCodeProvider(), MemberAttributes.Assembly)
: base(new VBCodeProvider(), TypeAttributes.NestedAssembly)
{
}