Add AdventOfCode2024 projects
This commit is contained in:
21
AdventOfCode2024/AdventOfCode2024.csproj
Normal file
21
AdventOfCode2024/AdventOfCode2024.csproj
Normal file
@@ -0,0 +1,21 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<RootNamespace>AdventOfCode2024</RootNamespace>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Update="inputs\*">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\AdventOfCode.Common\AdventOfCode.Common.csproj"/>
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
3
AdventOfCode2024/Program.cs
Normal file
3
AdventOfCode2024/Program.cs
Normal file
@@ -0,0 +1,3 @@
|
||||
global using AdventOfCode.Common;
|
||||
|
||||
DayHelper.RunDay("AdventOfCode2023", args);
|
||||
Reference in New Issue
Block a user