mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-16 00:42:51 +08:00
13 lines
372 B
C#
13 lines
372 B
C#
namespace Spectre.Console.Analyzer.Tests;
|
|
|
|
internal static class CodeAnalyzerHelper
|
|
{
|
|
internal static ReferenceAssemblies CurrentSpectre { get; }
|
|
|
|
static CodeAnalyzerHelper()
|
|
{
|
|
CurrentSpectre = ReferenceAssemblies.Net.Net60.AddAssemblies(
|
|
ImmutableArray.Create(typeof(AnsiConsole).Assembly.Location.Replace(".dll", string.Empty)));
|
|
}
|
|
}
|