Skip to content

Commit

Permalink
Add empty projects for 2023
Browse files Browse the repository at this point in the history
  • Loading branch information
premun committed Nov 28, 2023
1 parent 2cb4e5c commit daaeadf
Show file tree
Hide file tree
Showing 49 changed files with 772 additions and 50 deletions.
270 changes: 220 additions & 50 deletions AdventOfCode.sln

Large diffs are not rendered by default.

20 changes: 20 additions & 0 deletions src/2023/01/01.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<RootNamespace>AdventOfCode._2023_01</RootNamespace>
</PropertyGroup>

<ItemGroup>
<None Remove="input.txt" />
</ItemGroup>

<ItemGroup>
<EmbeddedResource Include="input.txt" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\Common\Common.csproj" />
</ItemGroup>

</Project>
3 changes: 3 additions & 0 deletions src/2023/01/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
using AdventOfCode.Common;

var lines = Resources.GetResourceFileLines("input.txt");
20 changes: 20 additions & 0 deletions src/2023/02/02.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<RootNamespace>AdventOfCode._2023_02</RootNamespace>
</PropertyGroup>

<ItemGroup>
<None Remove="input.txt" />
</ItemGroup>

<ItemGroup>
<EmbeddedResource Include="input.txt" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\Common\Common.csproj" />
</ItemGroup>

</Project>
3 changes: 3 additions & 0 deletions src/2023/02/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
using AdventOfCode.Common;

var lines = Resources.GetResourceFileLines("input.txt");
20 changes: 20 additions & 0 deletions src/2023/03/03.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<RootNamespace>AdventOfCode._2023_03</RootNamespace>
</PropertyGroup>

<ItemGroup>
<None Remove="input.txt" />
</ItemGroup>

<ItemGroup>
<EmbeddedResource Include="input.txt" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\Common\Common.csproj" />
</ItemGroup>

</Project>
3 changes: 3 additions & 0 deletions src/2023/03/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
using AdventOfCode.Common;

var lines = Resources.GetResourceFileLines("input.txt");
20 changes: 20 additions & 0 deletions src/2023/04/04.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<RootNamespace>AdventOfCode._2023_04</RootNamespace>
</PropertyGroup>

<ItemGroup>
<None Remove="input.txt" />
</ItemGroup>

<ItemGroup>
<EmbeddedResource Include="input.txt" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\Common\Common.csproj" />
</ItemGroup>

</Project>
3 changes: 3 additions & 0 deletions src/2023/04/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
using AdventOfCode.Common;

var lines = Resources.GetResourceFileLines("input.txt");
20 changes: 20 additions & 0 deletions src/2023/05/05.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<RootNamespace>AdventOfCode._2023_05</RootNamespace>
</PropertyGroup>

<ItemGroup>
<None Remove="input.txt" />
</ItemGroup>

<ItemGroup>
<EmbeddedResource Include="input.txt" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\Common\Common.csproj" />
</ItemGroup>

</Project>
3 changes: 3 additions & 0 deletions src/2023/05/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
using AdventOfCode.Common;

var lines = Resources.GetResourceFileLines("input.txt");
20 changes: 20 additions & 0 deletions src/2023/06/06.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<RootNamespace>AdventOfCode._2023_06</RootNamespace>
</PropertyGroup>

<ItemGroup>
<None Remove="input.txt" />
</ItemGroup>

<ItemGroup>
<EmbeddedResource Include="input.txt" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\Common\Common.csproj" />
</ItemGroup>

</Project>
3 changes: 3 additions & 0 deletions src/2023/06/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
using AdventOfCode.Common;

var lines = Resources.GetResourceFileLines("input.txt");
20 changes: 20 additions & 0 deletions src/2023/07/07.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<RootNamespace>AdventOfCode._2023_07</RootNamespace>
</PropertyGroup>

<ItemGroup>
<None Remove="input.txt" />
</ItemGroup>

<ItemGroup>
<EmbeddedResource Include="input.txt" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\Common\Common.csproj" />
</ItemGroup>

</Project>
3 changes: 3 additions & 0 deletions src/2023/07/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
using AdventOfCode.Common;

var lines = Resources.GetResourceFileLines("input.txt");
20 changes: 20 additions & 0 deletions src/2023/08/08.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<RootNamespace>AdventOfCode._2023_08</RootNamespace>
</PropertyGroup>

<ItemGroup>
<None Remove="input.txt" />
</ItemGroup>

<ItemGroup>
<EmbeddedResource Include="input.txt" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\Common\Common.csproj" />
</ItemGroup>

</Project>
3 changes: 3 additions & 0 deletions src/2023/08/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
using AdventOfCode.Common;

var lines = Resources.GetResourceFileLines("input.txt");
20 changes: 20 additions & 0 deletions src/2023/09/09.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<RootNamespace>AdventOfCode._2023_09</RootNamespace>
</PropertyGroup>

<ItemGroup>
<None Remove="input.txt" />
</ItemGroup>

<ItemGroup>
<EmbeddedResource Include="input.txt" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\Common\Common.csproj" />
</ItemGroup>

</Project>
3 changes: 3 additions & 0 deletions src/2023/09/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
using AdventOfCode.Common;

var lines = Resources.GetResourceFileLines("input.txt");
20 changes: 20 additions & 0 deletions src/2023/10/10.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<RootNamespace>AdventOfCode._2023_10</RootNamespace>
</PropertyGroup>

<ItemGroup>
<None Remove="input.txt" />
</ItemGroup>

<ItemGroup>
<EmbeddedResource Include="input.txt" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\Common\Common.csproj" />
</ItemGroup>

</Project>
3 changes: 3 additions & 0 deletions src/2023/10/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
using AdventOfCode.Common;

var lines = Resources.GetResourceFileLines("input.txt");
20 changes: 20 additions & 0 deletions src/2023/11/11.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<RootNamespace>AdventOfCode._2023_11</RootNamespace>
</PropertyGroup>

<ItemGroup>
<None Remove="input.txt" />
</ItemGroup>

<ItemGroup>
<EmbeddedResource Include="input.txt" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\Common\Common.csproj" />
</ItemGroup>

</Project>
3 changes: 3 additions & 0 deletions src/2023/11/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
using AdventOfCode.Common;

var lines = Resources.GetResourceFileLines("input.txt");
20 changes: 20 additions & 0 deletions src/2023/12/12.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<RootNamespace>AdventOfCode._2023_12</RootNamespace>
</PropertyGroup>

<ItemGroup>
<None Remove="input.txt" />
</ItemGroup>

<ItemGroup>
<EmbeddedResource Include="input.txt" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\Common\Common.csproj" />
</ItemGroup>

</Project>
3 changes: 3 additions & 0 deletions src/2023/12/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
using AdventOfCode.Common;

var lines = Resources.GetResourceFileLines("input.txt");
20 changes: 20 additions & 0 deletions src/2023/13/13.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<RootNamespace>AdventOfCode._2023_13</RootNamespace>
</PropertyGroup>

<ItemGroup>
<None Remove="input.txt" />
</ItemGroup>

<ItemGroup>
<EmbeddedResource Include="input.txt" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\Common\Common.csproj" />
</ItemGroup>

</Project>
3 changes: 3 additions & 0 deletions src/2023/13/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
using AdventOfCode.Common;

var lines = Resources.GetResourceFileLines("input.txt");
20 changes: 20 additions & 0 deletions src/2023/14/14.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<RootNamespace>AdventOfCode._2023_14</RootNamespace>
</PropertyGroup>

<ItemGroup>
<None Remove="input.txt" />
</ItemGroup>

<ItemGroup>
<EmbeddedResource Include="input.txt" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\Common\Common.csproj" />
</ItemGroup>

</Project>
3 changes: 3 additions & 0 deletions src/2023/14/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
using AdventOfCode.Common;

var lines = Resources.GetResourceFileLines("input.txt");
20 changes: 20 additions & 0 deletions src/2023/15/15.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<RootNamespace>AdventOfCode._2023_15</RootNamespace>
</PropertyGroup>

<ItemGroup>
<None Remove="input.txt" />
</ItemGroup>

<ItemGroup>
<EmbeddedResource Include="input.txt" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\Common\Common.csproj" />
</ItemGroup>

</Project>
3 changes: 3 additions & 0 deletions src/2023/15/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
using AdventOfCode.Common;

var lines = Resources.GetResourceFileLines("input.txt");
20 changes: 20 additions & 0 deletions src/2023/16/16.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<RootNamespace>AdventOfCode._2023_16</RootNamespace>
</PropertyGroup>

<ItemGroup>
<None Remove="input.txt" />
</ItemGroup>

<ItemGroup>
<EmbeddedResource Include="input.txt" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\Common\Common.csproj" />
</ItemGroup>

</Project>
3 changes: 3 additions & 0 deletions src/2023/16/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
using AdventOfCode.Common;

var lines = Resources.GetResourceFileLines("input.txt");
Loading

0 comments on commit daaeadf

Please sign in to comment.