Skip to content

Commit 3304bba

Browse files
committed
refactor(solutions): renamed solution files to DayXX.cs; no changes to namespace or classes
1 parent 1e1e660 commit 3304bba

File tree

51 files changed

+1
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+1
-1
lines changed

AdventOfCode/UserScripts/GenerateSolutionFiles.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ if(!(Test-Path $newDirectory)) {
3939
}
4040

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

0 commit comments

Comments
 (0)