-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnew-day.ps1
50 lines (43 loc) · 1.15 KB
/
new-day.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
param([Parameter(Mandatory = $true, Position = 0)][int]$DayNumber)
Push-Location $PSScriptRoot
try {
$name = "day$($DayNumber.ToString("00"))"
dotnet new console --language "F#" --name $name
dotnet sln add $name
dotnet add $name reference "./VibrantCode.AdventOfCode"
"" | Add-Content -Path "./$name/input.txt"
"" | Add-Content -Path "./$name/test.txt"
$LaunchSettingsContent = @"
{
"profiles": {
"$name": {
"commandName": "Project",
"commandLineArgs": "`$(MSBuildProjectDirectory)/input.txt"
},
"$name - test": {
"commandName": "Project",
"commandLineArgs": "`$(MSBuildProjectDirectory)/test.txt"
}
}
}
"@
mkdir "./$name/Properties" | Out-Null
$ProgramFsContent = @"
open System
open VibrantCode.AdventOfCode.AdventHelpers
let run data =
raise (new NotImplementedException())
[<EntryPoint>]
let main argv =
argv.[0]
|> loadLines
|> Seq.map int
|> run
0
"@
$LaunchSettingsContent | Set-Content -Path "./$name/Properties/launchSettings.json" -Encoding UTF8
$ProgramFsContent | Set-Content -Path "./$name/Program.fs" -Encoding UTF8
}
finally {
Pop-Location
}