We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a1cdc1d + 1e88b78 commit 703fe12Copy full SHA for 703fe12
src/app/FakeLib/GACHelper.fs
@@ -3,6 +3,10 @@ module Fake.GACHelper
3
4
open System
5
6
+/// Path to newest `gacutil.exe`
7
+let gacutilToolPath = !! (sdkBasePath + "/**/gacutil.exe")
8
+ |> getNewestTool
9
+
10
/// GAC parameters
11
type GACParams =
12
{ /// (Required) Path to the gacutil
@@ -13,8 +17,7 @@ type GACParams =
13
17
WorkingDir : string }
14
18
15
19
let mutable GACUtil =
16
- if isMono then "gacutil" else
- ProgramFilesX86 @@ "Microsoft SDKs/Windows/v8.0A/bin/NETFX 4.0 Tools/gacutil.exe"
20
+ if isMono then "gacutil" else gacutilToolPath
21
22
/// GACutil default parameters
23
let GACDefaults =
0 commit comments