File tree Expand file tree Collapse file tree 4 files changed +26
-13
lines changed
Expand file tree Collapse file tree 4 files changed +26
-13
lines changed Original file line number Diff line number Diff line change 1- $paketurl = " https://github.com/fsprojects/Paket/releases/download/5.201 .1/paket.exe"
1+ $paketurl = " https://github.com/fsprojects/Paket/releases/download/5.210 .1/paket.exe"
22$paketdir = Join-Path $PSScriptRoot " .paket"
33$paketpath = Join-Path $paketdir " paket.exe"
44
55# Enable TLS 1.2 and TLS 1.1 as Security Protocols
66[Net.ServicePointManager ]::SecurityProtocol = `
77 [Net.SecurityProtocolType ]::Tls12,
88 [Net.SecurityProtocolType ]::Tls11;
9-
9+
1010if (-not (Test-Path " $paketpath " )) {
11- mkdir " $paketdir "
11+ if (-not (Test-Path " $paketdir " )) {
12+ mkdir " $paketdir "
13+ }
1214 Invoke-WebRequest - Uri $paketurl - OutFile " $paketpath "
1315}
Original file line number Diff line number Diff line change @@ -12,10 +12,12 @@ while [[ -h "$source" ]]; do
1212done
1313scriptroot=" $( cd -P " $( dirname " $source " ) " && pwd ) "
1414
15- paketurl=https://github.com/fsprojects/Paket/releases/download/5.201 .1/paket.exe
15+ paketurl=https://github.com/fsprojects/Paket/releases/download/5.210 .1/paket.exe
1616paketdir=$scriptroot /.paket
1717paketpath=$paketdir /paket.exe
1818if [ ! -e " $paketpath " ]; then
19- mkdir " $paketdir "
19+ if [ ! -e " $paketdir " ]; then
20+ mkdir " $paketdir "
21+ fi
2022 curl -o " $paketpath " -L $paketurl
2123fi
Original file line number Diff line number Diff line change @@ -2,5 +2,5 @@ framework: net461
22
33source https://www.nuget.org/api/v2/
44
5- nuget FAKE 4.64.6
5+ nuget FAKE 5.8.4
66nuget FSharp.Formatting
Original file line number Diff line number Diff line change 11RESTRICTION: == net461
22NUGET
33 remote: https://www.nuget.org/api/v2
4- FAKE (4.64.6)
5- FSharp.Compiler.Service (2.0.0.6)
6- FSharp.Formatting (2.14.4)
7- FSharp.Compiler.Service (2.0.0.6)
8- FSharpVSPowerTools.Core (>= 2.3 < 2.4)
9- FSharpVSPowerTools.Core (2.3)
10- FSharp.Compiler.Service (>= 2.0.0.3)
4+ FAKE (5.8.4)
5+ FSharp.Compiler.Service (27.0.1)
6+ FSharp.Core (>= 4.5.2)
7+ System.Collections.Immutable (>= 1.5)
8+ System.Reflection.Metadata (>= 1.6)
9+ System.ValueTuple (>= 4.4)
10+ FSharp.Core (4.6.2)
11+ FSharp.Formatting (3.1)
12+ FSharp.Compiler.Service (>= 27.0.1 < 28.0)
13+ Microsoft.AspNet.Razor (>= 3.2.7 < 4.0)
14+ System.ValueTuple (>= 4.5 < 5.0)
15+ Microsoft.AspNet.Razor (3.2.7)
16+ System.Collections.Immutable (1.5)
17+ System.Reflection.Metadata (1.6)
18+ System.Collections.Immutable (>= 1.5)
19+ System.ValueTuple (4.5)
You can’t perform that action at this time.
0 commit comments