-
Notifications
You must be signed in to change notification settings - Fork 585
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2022 from fsharp/release/next
Next Release
- Loading branch information
Showing
66 changed files
with
4,095 additions
and
1,245 deletions.
There are no files selected for viewing
This file contains 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 characters
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
### Description | ||
|
||
Please give a brief explanation about your change. | ||
|
||
If available, link to an existing issue this PR fixes. For example: | ||
|
||
- fixes #1234 | ||
|
||
## TODO | ||
|
||
- [] New (API-)documentation for new features exist (Note: API-docs are enough, additional docs are in `help/markdown`) | ||
- [] unit or integration test exists (or short reasoning why it doesn't make sense) | ||
- [] (if new module) the module has been linked from the "Modules" menu, edit `help/templates/template.cshtml`, linking to the API-reference is fine. | ||
- [] (if new module) the module is in the correct namespace | ||
- [] (if new module) the module is added to Fake.sln (`dotnet sln Fake.sln add src/app/Fake.*/Fake.*.fsproj`) | ||
- [] Fake 5 [API guideline](https://fake.build/contributing.html#API-Design) is honored |
This file contains 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 characters
This file was deleted.
Oops, something went wrong.
This file contains 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 characters
This file contains 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 characters
This file contains 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 characters
This file contains 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 characters
This file contains 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 characters
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
// [ FAKE GROUP ] | ||
group Build | ||
source https://api.nuget.org/v3/index.json | ||
nuget Fake.DotNet.Cli | ||
nuget Fake.IO.FileSystem | ||
nuget Fake.Core.Target |
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
|
||
#r "paket: groupref build //" | ||
#load ".fake/build.fsx/intellisense.fsx" | ||
|
||
open Fake.Core | ||
open Fake.DotNet | ||
open Fake.IO | ||
open Fake.IO.FileSystemOperators | ||
open Fake.IO.Globbing.Operators | ||
open Fake.Core.TargetOperators | ||
|
||
Target.create "Clean" (fun _ -> | ||
printfn ".. CLEAN .." | ||
) | ||
|
||
Target.create "Build" (fun _ -> | ||
printfn ".. Build .." | ||
) | ||
|
||
Target.create "All" ignore | ||
|
||
"Clean" | ||
==> "Build" | ||
==> "All" | ||
|
||
Target.runOrDefault "All" |
Oops, something went wrong.