mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-26 21:22:50 +08:00
16 lines
363 B
C#
16 lines
363 B
C#
namespace Spectre.Console.Analyzer.Sandbox;
|
|
|
|
/// <summary>
|
|
/// Sample sandbox for testing out analyzers.
|
|
/// </summary>
|
|
public static class Program
|
|
{
|
|
/// <summary>
|
|
/// The program's entry point.
|
|
/// </summary>
|
|
public static void Main()
|
|
{
|
|
AnsiConsole.WriteLine("Project is set up with a reference to Spectre.Console.Analyzer");
|
|
}
|
|
}
|