chore: setup for day 12
This commit is contained in:
@@ -16,6 +16,7 @@
|
||||
<Path>09/INPUT.txt</Path>
|
||||
<Path>09/PROBLEM.md</Path>
|
||||
<Path>10</Path>
|
||||
<Path>12</Path>
|
||||
<Path>README.md</Path>
|
||||
</explicitIncludes>
|
||||
<explicitExcludes />
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net9.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<NoWarn>CA1822</NoWarn>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\GardenGroups\GardenGroups.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="TUnit" Version="0.4.105" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
@@ -0,0 +1,21 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net9.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<NoWarn>CA1822</NoWarn>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<InternalsVisibleTo Include="$(AssemblyName).Tests" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Content Include="..\INPUT.txt">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
@@ -0,0 +1,2 @@
|
||||
// See https://aka.ms/new-console-template for more information
|
||||
Console.WriteLine("Hello, World!");
|
||||
@@ -88,6 +88,12 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PlutonianPebbles", "11\Plut
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PlutonianPebbles.Tests", "11\PlutonianPebbles.Tests\PlutonianPebbles.Tests.csproj", "{47276FDB-9A8C-467F-991F-C57AB22DF2B5}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "12", "12", "{8700A6AE-B77C-4B5B-AD15-6E285D43EC78}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GardenGroups", "12\GardenGroups\GardenGroups.csproj", "{9F285A6D-27CD-4D5A-AF2B-6C4FCC9F934C}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GardenGroups.Tests", "12\GardenGroups.Tests\GardenGroups.Tests.csproj", "{0214851E-4415-4966-92D8-46809BD13721}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
@@ -185,6 +191,14 @@ Global
|
||||
{47276FDB-9A8C-467F-991F-C57AB22DF2B5}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{47276FDB-9A8C-467F-991F-C57AB22DF2B5}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{47276FDB-9A8C-467F-991F-C57AB22DF2B5}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{9F285A6D-27CD-4D5A-AF2B-6C4FCC9F934C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{9F285A6D-27CD-4D5A-AF2B-6C4FCC9F934C}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{9F285A6D-27CD-4D5A-AF2B-6C4FCC9F934C}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{9F285A6D-27CD-4D5A-AF2B-6C4FCC9F934C}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{0214851E-4415-4966-92D8-46809BD13721}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{0214851E-4415-4966-92D8-46809BD13721}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{0214851E-4415-4966-92D8-46809BD13721}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{0214851E-4415-4966-92D8-46809BD13721}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(NestedProjects) = preSolution
|
||||
{1AFE2FF1-A55D-4D86-A9BB-9875CA0D14D8} = {270B7829-6D23-4B34-91FE-D87D533AF2AB}
|
||||
@@ -209,5 +223,7 @@ Global
|
||||
{2FACCE14-0E91-4FAA-9105-711A2B4428C3} = {7AB34145-87D1-4BB5-AF9C-E0239F8BE1DB}
|
||||
{D5FB6D59-FD68-4186-AE98-585B62EF1E4E} = {F2904315-B827-476F-8CDE-99D2EF115F0A}
|
||||
{47276FDB-9A8C-467F-991F-C57AB22DF2B5} = {F2904315-B827-476F-8CDE-99D2EF115F0A}
|
||||
{9F285A6D-27CD-4D5A-AF2B-6C4FCC9F934C} = {8700A6AE-B77C-4B5B-AD15-6E285D43EC78}
|
||||
{0214851E-4415-4966-92D8-46809BD13721} = {8700A6AE-B77C-4B5B-AD15-6E285D43EC78}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
|
||||
Reference in New Issue
Block a user