Renaming analyzer test project to sandbox

This commit is contained in:
Phil Scott
2021-06-22 21:38:25 -04:00
committed by Patrik Svensson
parent d1048260cc
commit 8b058d6342
4 changed files with 28 additions and 32 deletions

View File

@ -1,16 +0,0 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\src\Spectre.Console\Spectre.Console.csproj" />
<ProjectReference Include="..\..\..\src\Spectre.Console.Analyzer\Spectre.Console.Analyzer.csproj"
PrivateAssets="all"
ReferenceOutputAssembly="false"
OutputItemType="Analyzer" />
</ItemGroup>
</Project>

View File

@ -1,13 +0,0 @@
using System.Threading;
using Spectre.Console;
namespace AnalyzerTester
{
class Program
{
static void Main()
{
AnsiConsole.WriteLine("Project is set up with a reference to Spectre.Console.Analyzer");
}
}
}