Last active
May 15, 2017 08:36
-
-
Save toburger/3c4692a2b46c5dd1f0efe66dde66766a to your computer and use it in GitHub Desktop.
Revisions
-
toburger revised this gist
May 15, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,7 +3,7 @@ let fscToolPath = findToolFolderInSubPath "fsc.exe" "packages" let msbuildProps = [ "FscToolPath", fscToolPath ] Target "Build" (fun _ -> !! projectFile |> MSBuildReleaseExt releaseDir msbuildProps "Build" |> Log "AppBuild-Output") -
toburger revised this gist
May 15, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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 -
toburger created this gist
May 15, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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") //... This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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