ben
/
aoc
1
0
Fork 0

add blank project for 2023
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Ben Harris 2023-09-18 18:13:24 -04:00
parent 425acc5de5
commit ce3045af83
4 changed files with 42 additions and 3 deletions

View File

@ -25,8 +25,5 @@
<ItemGroup>
<ProjectReference Include="..\AOC.Common\AOC.Common.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="morelinq" Version="3.4.2" />
</ItemGroup>
</Project>

35
AOC2023/AOC2023.csproj Normal file
View File

@ -0,0 +1,35 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<None Update="input2023\*.in">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<Using Include="AOC.Common" />
<Using Include="System.Collections.Generic" />
<Using Include="System.Collections.Immutable" />
<Using Include="System.Diagnostics" />
<Using Include="System.Reflection" />
<Using Include="System.Text" />
<Using Include="System.Text.RegularExpressions" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AOC.Common\AOC.Common.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="morelinq" Version="3.4.2" />
</ItemGroup>
<ItemGroup>
<Folder Include="input2023\" />
</ItemGroup>
</Project>

1
AOC2023/Program.cs Normal file
View File

@ -0,0 +1 @@
Day.RunFromArgs(args);

View File

@ -20,6 +20,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AOC2021", "AOC2021\AOC2021.
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AOC2022", "AOC2022\AOC2022.csproj", "{AF6D6164-420C-45B6-BCF3-1729D7374986}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AOC2023", "AOC2023\AOC2023.csproj", "{0314348C-A3E9-4A0A-B695-F51946EB5EDC}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@ -66,5 +68,9 @@ Global
{33F08A7F-FBE8-43C1-812F-DE387D19431D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{33F08A7F-FBE8-43C1-812F-DE387D19431D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{33F08A7F-FBE8-43C1-812F-DE387D19431D}.Release|Any CPU.Build.0 = Release|Any CPU
{0314348C-A3E9-4A0A-B695-F51946EB5EDC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0314348C-A3E9-4A0A-B695-F51946EB5EDC}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0314348C-A3E9-4A0A-B695-F51946EB5EDC}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0314348C-A3E9-4A0A-B695-F51946EB5EDC}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal