We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e2d18f commit 8d39e5fCopy full SHA for 8d39e5f
build/Program.fs
@@ -17,7 +17,9 @@ Path.Combine(__SOURCE_DIRECTORY__, "..")
17
|> Path.GetFullPath
18
|> Directory.SetCurrentDirectory
19
20
-let execContext = Fake.Core.Context.FakeExecutionContext.Create false "build.fsx" [ ]
+let execContext =
21
+ let args = Environment.GetCommandLineArgs() |> Seq.skip 1 |> Seq.toList
22
+ Fake.Core.Context.FakeExecutionContext.Create false "build.fsx" args
23
execContext
24
|> Fake.Core.Context.RuntimeContext.Fake
25
|> Fake.Core.Context.setExecutionContext
0 commit comments