Add project files.

This commit is contained in:
2022-11-28 22:54:49 -05:00
parent dd97a677bb
commit c0c9e45e49
20 changed files with 417 additions and 0 deletions

13
AOC2023/AOC2023.csproj Normal file
View File

@@ -0,0 +1,13 @@
<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>

32
AOC2023/TestProblem.cs Normal file
View File

@@ -0,0 +1,32 @@
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");
}
}