Remove duplicate files
This commit is contained in:
@@ -1,13 +0,0 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\AOC Runner\AOC Runner.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
@@ -1,32 +0,0 @@
|
||||
using AOC.Runner;
|
||||
|
||||
namespace AOC2023;
|
||||
[ProblemInfo("2023", 0, "Test")]
|
||||
public class TestProblem : IProblemBase
|
||||
{
|
||||
public void LoadInput()
|
||||
{
|
||||
Thread.Sleep(1000);
|
||||
}
|
||||
|
||||
public void CalculatePart1()
|
||||
{
|
||||
Thread.Sleep(1000);
|
||||
}
|
||||
|
||||
public void CalculatePart2()
|
||||
{
|
||||
Thread.Sleep(1000);
|
||||
}
|
||||
|
||||
|
||||
public void PrintPart1()
|
||||
{
|
||||
Console.WriteLine("Result");
|
||||
}
|
||||
|
||||
public void PrintPart2()
|
||||
{
|
||||
Console.WriteLine("Result 2");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user