mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-26 07:47:54 +01:00
Skeleton program.cs for basic debugging of analyzers
This commit is contained in:
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user