Move legacy VS2013 solution folder

This commit is contained in:
Christian Helle
2017-11-09 09:47:38 +01:00
parent 3cdf0c0f7e
commit 7856f0465d
75 changed files with 0 additions and 0 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;
}
}
}