Skip to content

Instantly share code, notes, and snippets.

@toburger
Last active May 15, 2017 08:36
Show Gist options
  • Select an option

  • Save toburger/3c4692a2b46c5dd1f0efe66dde66766a to your computer and use it in GitHub Desktop.

Select an option

Save toburger/3c4692a2b46c5dd1f0efe66dde66766a to your computer and use it in GitHub Desktop.

Revisions

  1. toburger revised this gist May 15, 2017. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion build.fsx
    Original file line number Diff line number Diff line change
    @@ -3,7 +3,7 @@
    let fscToolPath = findToolFolderInSubPath "fsc.exe" "packages"
    let msbuildProps = [ "FscToolPath", fscToolPath ]

    Tarbet "Builder" (fun _ ->
    Target "Build" (fun _ ->
    !! projectFile
    |> MSBuildReleaseExt releaseDir msbuildProps "Build"
    |> Log "AppBuild-Output")
  2. toburger revised this gist May 15, 2017. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion paket.dependencies
    Original file line number Diff line number Diff line change
    @@ -4,4 +4,4 @@ group Build
    source https://www.nuget.org/api/v2

    nuget fake
    nuget FSharp.Compiler.Tools
    nuget FSharp.Compiler.Tools
  3. toburger created this gist May 15, 2017.
    11 changes: 11 additions & 0 deletions build.fsx
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,11 @@
    //...

    let fscToolPath = findToolFolderInSubPath "fsc.exe" "packages"
    let msbuildProps = [ "FscToolPath", fscToolPath ]

    Tarbet "Builder" (fun _ ->
    !! projectFile
    |> MSBuildReleaseExt releaseDir msbuildProps "Build"
    |> Log "AppBuild-Output")

    //...
    7 changes: 7 additions & 0 deletions paket.dependencies
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,7 @@
    group Build
    framework: net462
    content: none
    source https://www.nuget.org/api/v2

    nuget fake
    nuget FSharp.Compiler.Tools