Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release Candidate 16 #1949

Merged
merged 36 commits into from
May 21, 2018
Merged
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
5d31a31
Update targets to allow deactivation
BlythMeister May 14, 2018
459c40d
Fix version.
matthid May 14, 2018
fc49f1b
Nope it's on nuget.
matthid May 14, 2018
062e030
small fix
matthid May 21, 2018
f221cea
Add tests and fix https://github.com/fsharp/FAKE/issues/1947
matthid May 21, 2018
341301f
Improve error when trying to load full-framework assemblies.
matthid May 21, 2018
56ff779
Use Console.WriteLine which hopefully prevents races in parallel mode.
matthid May 21, 2018
6bf67bb
Merge pull request #1948 from fsharp/fix_1947
matthid May 21, 2018
add741f
rc016
matthid May 21, 2018
26ecd57
Merge branch 'master' of github.com:fsharp/FAKE into release/rc
matthid May 21, 2018
5b96244
add some logic to write relative instead of absolute paths to cache, …
matthid May 21, 2018
997925c
fix compilation
matthid May 21, 2018
9e3f39f
Merge branch 'release/rc' into fix_1924
matthid May 21, 2018
c1c5acf
Run final targets after user cancels with ctrl+c
kblohm May 20, 2018
a861892
try to fix test
matthid May 21, 2018
6aeeed7
.
matthid May 21, 2018
47a00e2
fix
matthid May 21, 2018
6a62f0f
Fix broken link to `Add FAKE Dependencies` section on migration guide
baronfel May 21, 2018
2a9d0fb
Merge pull request #1952 from baronfel/patch-2
matthid May 21, 2018
79fa757
change condition slightly
matthid May 21, 2018
f45a847
Added tests as this was surprisingly tricky to get correct.
matthid May 21, 2018
9c250c9
address warnings that came up during initial build
baronfel May 21, 2018
7b396c9
only print warnings if non-silent
baronfel May 21, 2018
4cf58f6
sort target names
baronfel May 21, 2018
0b4f7a4
Merge pull request #1950 from fsharp/fix_1924
matthid May 21, 2018
0562a93
revert warnings change and add note to Environment about mono semantics
baronfel May 21, 2018
8640251
Merge pull request #1953 from baronfel/list_targets_quitely
matthid May 21, 2018
e3242b1
Use FSharp.Control.Reactive and some Cleanup
kblohm May 21, 2018
4ee2ee3
Merge pull request #1946 from kblohm/handleUserCancel
matthid May 21, 2018
8895052
release notes
matthid May 21, 2018
61a30ab
Merge branch 'release/rc' into patch-3
matthid May 21, 2018
2cfc9e9
Merge pull request #1928 from BlythMeister/patch-3
matthid May 21, 2018
64644dd
revert changes in target file
matthid May 21, 2018
b0bb27f
Add tests and fix them (make sure parallel runner always use latest c…
matthid May 21, 2018
3f7f0da
Merge branch 'release/rc' of github.com:fsharp/FAKE into release/rc
matthid May 21, 2018
87390ac
release notes.
matthid May 21, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/app/Fake.Core.Target/Target.fs
Original file line number Diff line number Diff line change
@@ -317,7 +317,7 @@ module Target =
/// List all targets available.
let listAvailable() =
Trace.log "The following targets are available:"
for t in getTargetDict().Values do
for t in getTargetDict().Values |> Seq.sortBy (fun t -> t.Name) do
Trace.logfn " %s%s" t.Name (match t.Description with Some s -> sprintf " - %s" s | _ -> "")