Skeleton program.cs for basic debugging of analyzers

This commit is contained in:
Brandon Thetford
2024-04-19 16:47:18 -07:00
parent 7ef6c57331
commit cdd2cc7e10

View File

@@ -0,0 +1,21 @@
using Terminal.Gui.Analyzers.Internal.Attributes;
namespace Terminal.Gui.Analyzers.Internal.Debugging;
class Program
{
static void Main (string [] args)
{
}
}
[GenerateEnumExtensionMethods]
public enum TestEnum
{
Zero = 0,
One,
Two = 2,
Three,
Six = 6
}