From ef9009f3c48a3910c063513b0dea39d0fe4486da Mon Sep 17 00:00:00 2001 From: Sachin Shah Date: Sat, 15 Sep 2018 10:30:41 -0500 Subject: [PATCH] Add .NET SDK 2.1.400, 2.1.401, 2.1.402 --- src/app/Fake.DotNet.Cli/DotNet.fs | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/src/app/Fake.DotNet.Cli/DotNet.fs b/src/app/Fake.DotNet.Cli/DotNet.fs index a0da1270127..6a550a0756c 100644 --- a/src/app/Fake.DotNet.Cli/DotNet.fs +++ b/src/app/Fake.DotNet.Cli/DotNet.fs @@ -337,6 +337,36 @@ module DotNet = Version = Version "2.1.302" } + let Release_2_1_400 option = + { option with + InstallerOptions = (fun io -> + { io with + Branch = "release/2.1" + }) + Channel = None + Version = Version "2.1.400" + } + + let Release_2_1_401 option = + { option with + InstallerOptions = (fun io -> + { io with + Branch = "release/2.1" + }) + Channel = None + Version = Version "2.1.401" + } + + let Release_2_1_402 option = + { option with + InstallerOptions = (fun io -> + { io with + Branch = "release/2.1" + }) + Channel = None + Version = Version "2.1.402" + } + let FromGlobalJson option = { option with InstallerOptions = id