Skip to content

Commit

Permalink
chore: Initial template
Browse files Browse the repository at this point in the history
  • Loading branch information
adamrodger committed Nov 27, 2023
0 parents commit e6ce897
Show file tree
Hide file tree
Showing 22 changed files with 1,271 additions and 0 deletions.
158 changes: 158 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,158 @@
###############################
# Core EditorConfig Options #
###############################

root = true

# All files
[*]
indent_style = space
indent_size = 4
insert_final_newline = true
charset = utf-8
trim_trailing_whitespace = true

[*.csproj]
indent_size = 2

[*.sh]
end_of_line = lf

###############################
# .NET Coding Conventions #
###############################

[*.{cs,vb}]
# Organize usings
dotnet_sort_system_directives_first = true
dotnet_separate_import_directive_groups = false

# this. preferences
dotnet_style_qualification_for_field = true:silent
dotnet_style_qualification_for_property = true:silent
dotnet_style_qualification_for_method = true:silent
dotnet_style_qualification_for_event = true:silent

# Language keywords vs BCL types preferences
dotnet_style_predefined_type_for_locals_parameters_members = true:silent
dotnet_style_predefined_type_for_member_access = true:silent

# Parentheses preferences
dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity:silent
dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity:silent
dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:silent
dotnet_style_parentheses_in_other_operators = never_if_unnecessary:silent

# Modifier preferences
dotnet_style_require_accessibility_modifiers = for_non_interface_members:silent
dotnet_style_readonly_field = true:suggestion

# Expression-level preferences
dotnet_style_object_initializer = true:suggestion
dotnet_style_collection_initializer = true:suggestion
dotnet_style_explicit_tuple_names = true:suggestion
dotnet_style_null_propagation = true:suggestion
dotnet_style_coalesce_expression = true:suggestion
dotnet_style_prefer_is_null_check_over_reference_equality_method = true:silent
dotnet_style_prefer_inferred_tuple_names = true:suggestion
dotnet_style_prefer_inferred_anonymous_type_member_names = true:suggestion
dotnet_style_prefer_auto_properties = true:silent
dotnet_style_prefer_conditional_expression_over_assignment = true:silent
dotnet_style_prefer_conditional_expression_over_return = true:silent

###############################
# Naming Conventions #
###############################

# Style Definitions
dotnet_naming_style.pascal_case_style.capitalization = pascal_case

# Use PascalCase for constant fields
dotnet_naming_rule.constant_fields_should_be_pascal_case.severity = suggestion
dotnet_naming_rule.constant_fields_should_be_pascal_case.symbols = constant_fields
dotnet_naming_rule.constant_fields_should_be_pascal_case.style = pascal_case_style
dotnet_naming_symbols.constant_fields.applicable_kinds = field
dotnet_naming_symbols.constant_fields.applicable_accessibilities = *
dotnet_naming_symbols.constant_fields.required_modifiers = const

###############################
# C# Code Style Rules #
###############################

[*.cs]
# var preferences
csharp_style_var_for_built_in_types = false:silent
csharp_style_var_when_type_is_apparent = true:silent
csharp_style_var_elsewhere = false:silent

# Expression-bodied members
csharp_style_expression_bodied_methods = false:silent
csharp_style_expression_bodied_constructors = false:silent
csharp_style_expression_bodied_operators = false:silent
csharp_style_expression_bodied_properties = true:silent
csharp_style_expression_bodied_indexers = true:silent
csharp_style_expression_bodied_accessors = true:silent

# Pattern-matching preferences
csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion
csharp_style_pattern_matching_over_as_with_null_check = true:suggestion

# Null-checking preferences
csharp_style_throw_expression = true:suggestion
csharp_style_conditional_delegate_call = true:suggestion

# Modifier preferences
csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async:suggestion

# Expression-level preferences
csharp_prefer_braces = true:silent
csharp_style_deconstructed_variable_declaration = true:suggestion
csharp_prefer_simple_default_expression = true:suggestion
csharp_style_pattern_local_over_anonymous_function = true:suggestion
csharp_style_inlined_variable_declaration = true:suggestion

###############################
# C# Formatting Rules #
###############################

# New line preferences
csharp_new_line_before_open_brace = all
csharp_new_line_before_else = true
csharp_new_line_before_catch = true
csharp_new_line_before_finally = true
csharp_new_line_before_members_in_object_initializers = true
csharp_new_line_before_members_in_anonymous_types = true
csharp_new_line_between_query_expression_clauses = true

# Indentation preferences
csharp_indent_case_contents = true
csharp_indent_switch_labels = true
csharp_indent_labels = flush_left

# Space preferences
csharp_space_after_cast = false
csharp_space_after_keywords_in_control_flow_statements = true
csharp_space_between_method_call_parameter_list_parentheses = false
csharp_space_between_method_declaration_parameter_list_parentheses = false
csharp_space_between_parentheses = false
csharp_space_before_colon_in_inheritance_clause = true
csharp_space_after_colon_in_inheritance_clause = true
csharp_space_around_binary_operators = before_and_after
csharp_space_between_method_declaration_empty_parameter_list_parentheses = false
csharp_space_between_method_call_name_and_opening_parenthesis = false
csharp_space_between_method_call_empty_parameter_list_parentheses = false
csharp_space_after_comma = true
csharp_space_after_dot = false

# Wrapping preferences
csharp_preserve_single_line_statements = true
csharp_preserve_single_line_blocks = true

##################################
# Visual Basic Code Style Rules #
##################################

[*.vb]
# Modifier preferences
visual_basic_preferred_modifier_order = Partial,Default,Private,Protected,Public,Friend,NotOverridable,Overridable,MustOverride,Overloads,Overrides,MustInherit,NotInheritable,Static,Shared,Shadows,ReadOnly,WriteOnly,Dim,Const,WithEvents,Widening,Narrowing,Custom,Async:suggestion

19 changes: 19 additions & 0 deletions .github/workflows/dotnetcore.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build and Test

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: "8.0"
- name: Build
run: dotnet build --configuration Release
- name: Test
run: dotnet test -c Release --no-build tests/AdventOfCode.Tests/AdventOfCode.Tests.csproj
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.vs/
_ReSharper.Caches/
[Bb]in/
[Oo]bj/
BenchmarkDotNet.Artifacts/
*.user
.vscode/
.idea/
*.orig
74 changes: 74 additions & 0 deletions AdventOfCode.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.32014.148
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{144280E6-139A-4C2F-A6DA-AA6488A63ECD}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AdventOfCode", "src\AdventOfCode\AdventOfCode.csproj", "{8CB892D9-967A-41C3-9115-DD0DE49A8D2D}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{C3330C24-683D-472D-928B-329D14E87579}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AdventOfCode.Tests", "tests\AdventOfCode.Tests\AdventOfCode.Tests.csproj", "{CD48646D-A16E-433B-908A-076AC76930C2}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AdventOfCode.Benchmarks", "tests\AdventOfCode.Benchmarks\AdventOfCode.Benchmarks.csproj", "{9680113A-B5DE-493F-A4A0-53CC9DE5900B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{8CB892D9-967A-41C3-9115-DD0DE49A8D2D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8CB892D9-967A-41C3-9115-DD0DE49A8D2D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8CB892D9-967A-41C3-9115-DD0DE49A8D2D}.Debug|x64.ActiveCfg = Debug|Any CPU
{8CB892D9-967A-41C3-9115-DD0DE49A8D2D}.Debug|x64.Build.0 = Debug|Any CPU
{8CB892D9-967A-41C3-9115-DD0DE49A8D2D}.Debug|x86.ActiveCfg = Debug|Any CPU
{8CB892D9-967A-41C3-9115-DD0DE49A8D2D}.Debug|x86.Build.0 = Debug|Any CPU
{8CB892D9-967A-41C3-9115-DD0DE49A8D2D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8CB892D9-967A-41C3-9115-DD0DE49A8D2D}.Release|Any CPU.Build.0 = Release|Any CPU
{8CB892D9-967A-41C3-9115-DD0DE49A8D2D}.Release|x64.ActiveCfg = Release|Any CPU
{8CB892D9-967A-41C3-9115-DD0DE49A8D2D}.Release|x64.Build.0 = Release|Any CPU
{8CB892D9-967A-41C3-9115-DD0DE49A8D2D}.Release|x86.ActiveCfg = Release|Any CPU
{8CB892D9-967A-41C3-9115-DD0DE49A8D2D}.Release|x86.Build.0 = Release|Any CPU
{CD48646D-A16E-433B-908A-076AC76930C2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CD48646D-A16E-433B-908A-076AC76930C2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CD48646D-A16E-433B-908A-076AC76930C2}.Debug|x64.ActiveCfg = Debug|Any CPU
{CD48646D-A16E-433B-908A-076AC76930C2}.Debug|x64.Build.0 = Debug|Any CPU
{CD48646D-A16E-433B-908A-076AC76930C2}.Debug|x86.ActiveCfg = Debug|Any CPU
{CD48646D-A16E-433B-908A-076AC76930C2}.Debug|x86.Build.0 = Debug|Any CPU
{CD48646D-A16E-433B-908A-076AC76930C2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CD48646D-A16E-433B-908A-076AC76930C2}.Release|Any CPU.Build.0 = Release|Any CPU
{CD48646D-A16E-433B-908A-076AC76930C2}.Release|x64.ActiveCfg = Release|Any CPU
{CD48646D-A16E-433B-908A-076AC76930C2}.Release|x64.Build.0 = Release|Any CPU
{CD48646D-A16E-433B-908A-076AC76930C2}.Release|x86.ActiveCfg = Release|Any CPU
{CD48646D-A16E-433B-908A-076AC76930C2}.Release|x86.Build.0 = Release|Any CPU
{9680113A-B5DE-493F-A4A0-53CC9DE5900B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{9680113A-B5DE-493F-A4A0-53CC9DE5900B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{9680113A-B5DE-493F-A4A0-53CC9DE5900B}.Debug|x64.ActiveCfg = Debug|Any CPU
{9680113A-B5DE-493F-A4A0-53CC9DE5900B}.Debug|x64.Build.0 = Debug|Any CPU
{9680113A-B5DE-493F-A4A0-53CC9DE5900B}.Debug|x86.ActiveCfg = Debug|Any CPU
{9680113A-B5DE-493F-A4A0-53CC9DE5900B}.Debug|x86.Build.0 = Debug|Any CPU
{9680113A-B5DE-493F-A4A0-53CC9DE5900B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{9680113A-B5DE-493F-A4A0-53CC9DE5900B}.Release|Any CPU.Build.0 = Release|Any CPU
{9680113A-B5DE-493F-A4A0-53CC9DE5900B}.Release|x64.ActiveCfg = Release|Any CPU
{9680113A-B5DE-493F-A4A0-53CC9DE5900B}.Release|x64.Build.0 = Release|Any CPU
{9680113A-B5DE-493F-A4A0-53CC9DE5900B}.Release|x86.ActiveCfg = Release|Any CPU
{9680113A-B5DE-493F-A4A0-53CC9DE5900B}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{8CB892D9-967A-41C3-9115-DD0DE49A8D2D} = {144280E6-139A-4C2F-A6DA-AA6488A63ECD}
{CD48646D-A16E-433B-908A-076AC76930C2} = {C3330C24-683D-472D-928B-329D14E87579}
{9680113A-B5DE-493F-A4A0-53CC9DE5900B} = {C3330C24-683D-472D-928B-329D14E87579}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {F8BA1C3B-71E7-4DF4-B75A-5ADC41EEDD2D}
EndGlobalSection
EndGlobal
22 changes: 22 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
MIT License

Copyright (c) 2023 Adam Rodger

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Advent of Code 2023
===================

Solutions to [Advent Of Code 2023](http://adventofcode.com/2023)

![](https://github.com/adamrodger/advent-2023/workflows/Build%20and%20Test/badge.svg)
19 changes: 19 additions & 0 deletions src/AdventOfCode/AdventOfCode.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>latest</LangVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="MoreLinq" Version="3.3.2" />
<PackageReference Include="Optional" Version="4.0.0" />
</ItemGroup>

<ItemGroup>
<None Update="inputs\*.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>

</Project>
30 changes: 30 additions & 0 deletions src/AdventOfCode/DayXX.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
using System;

namespace AdventOfCode
{
/// <summary>
/// Solver for Day XX
/// </summary>
public class DayXX
{
public int Part1(string[] input)
{
foreach (string line in input)
{
throw new NotImplementedException("Part 1 not implemented");
}

return 0;
}

public int Part2(string[] input)
{
foreach (string line in input)
{
throw new NotImplementedException("Part 2 not implemented");
}

return 0;
}
}
}
Loading

0 comments on commit e6ce897

Please sign in to comment.