Skip to content

Commit

Permalink
refactor(solutions): renamed solution files to DayXX.cs; no changes t…
Browse files Browse the repository at this point in the history
…o namespace or classes
  • Loading branch information
sindrekjr committed Oct 3, 2021
1 parent 1e1e660 commit 3304bba
Show file tree
Hide file tree
Showing 51 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AdventOfCode/UserScripts/GenerateSolutionFiles.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ if(!(Test-Path $newDirectory)) {
}

for($i = 1; $i -le 25; $i++) {
$newFile = Join-Path $newDirectory "Day$("{0:00}" -f $i)" "Solution.cs"
$newFile = Join-Path $newDirectory "Day$("{0:00}" -f $i)" "Day$("{0:00}" -f $i).cs"
if(!(Test-Path $newFile)) {
New-Item $newFile -ItemType File -Value ($template -replace "<YEAR>", $Year -replace "<DAY>", "$("{0:00}" -f $i)") -Force | Out-Null
}
Expand Down

0 comments on commit 3304bba

Please sign in to comment.