{"id":13396818,"url":"https://github.com/fsprojects/FAKE","last_synced_at":"2025-03-13T23:31:51.102Z","repository":{"id":38310520,"uuid":"507569","full_name":"fsprojects/FAKE","owner":"fsprojects","description":"FAKE - F# Make","archived":false,"fork":false,"pushed_at":"2025-01-08T21:30:44.000Z","size":289290,"stargazers_count":1303,"open_issues_count":47,"forks_count":588,"subscribers_count":49,"default_branch":"master","last_synced_at":"2025-03-06T09:59:27.633Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://fake.build","language":"F#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fsprojects.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"License.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2010-02-08T10:02:28.000Z","updated_at":"2025-03-04T23:24:10.000Z","dependencies_parsed_at":"2023-10-01T14:59:08.944Z","dependency_job_id":"dbe62562-0b03-4ccd-a754-4152640db1a3","html_url":"https://github.com/fsprojects/FAKE","commit_stats":{"total_commits":7852,"total_committers":495,"mean_commits":"15.862626262626263","dds":0.577177789098319,"last_synced_commit":"6f2fc43b0b430128856d457b74d017babc07f0c0"},"previous_names":["fsharp/fake"],"tags_count":1808,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fsprojects%2FFAKE","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fsprojects%2FFAKE/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fsprojects%2FFAKE/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fsprojects%2FFAKE/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fsprojects","download_url":"https://codeload.github.com/fsprojects/FAKE/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243500209,"owners_count":20300759,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-07-30T18:01:03.803Z","updated_at":"2025-03-13T23:31:49.604Z","avatar_url":"https://github.com/fsprojects.png","language":"F#","readme":"# FAKE - F# Make \u0026middot; [![FAKE Build and Test](https://github.com/fsprojects/FAKE/actions/workflows/build_and_test.yml/badge.svg?branch=master)](https://github.com/fsprojects/FAKE/actions/workflows/build_and_test.yml) [![NuGet Badge](https://buildstats.info/nuget/Fake-Cli)](https://www.nuget.org/packages/Fake-Cli) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)]([https://reactjs.org/docs/how-to-contribute.html#your-first-pull-request](https://fake.build/guide/contributing.html)) [![Join the chat at https://gitter.im/fsharp/FAKE](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/fsharp/FAKE?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge)\n\n\"FAKE - F# Make\" is a cross platform build automation system. Due to its integration\nin F#, all the benefits of the .NET Framework and functional programming can be used, including\nthe extensive class library, powerful debuggers and integrated development environments like\nVisual Studio or MonoDevelop, which provide syntax highlighting and code completion.\n\nThe new DSL was designed to be succinct, typed, declarative, extensible and easy to use.\n\nHere is an example to get a glimpse on FAKE:\n\n```F#\n// build.fsx\n\n#r \"paket:\nnuget Fake.Core.Trace\nnuget Fake.Core.Target //\"\n// include Fake modules, see Fake modules section\n\nopen Fake.Core\n\n// *** Define Targets ***\nTarget.create \"Clean\" (fun _ -\u003e\n  Trace.log \" --- Cleaning stuff --- \"\n)\n\nTarget.create \"Build\" (fun _ -\u003e\n  Trace.log \" --- Building the app --- \"\n)\n\nTarget.create \"Deploy\" (fun _ -\u003e\n  Trace.log \" --- Deploying app --- \"\n)\n\nopen Fake.Core.TargetOperators\n\n// *** Define Dependencies ***\n\"Clean\"\n  ==\u003e \"Build\"\n  ==\u003e \"Deploy\"\n\n// *** Start Build ***\nTarget.runOrDefault \"Deploy\"\n```\n\nThis example pulls Fake's `Target` and `Trace` modules and define three targets: `Clean`, `Build`, and `Deploy`. By analogy with a .Net project;\n* the `Clean` target can be used to clean the project before a build,\n*  the `Build` target to call MSBuild or any build steps that are required for you application,\n*  the `Deploy` target can push your built project to a cloud service.\n\nAt the bottom, the example define target dependencies, which specify that a `Deploy` must run after a `Build` which must run after a `Clean`.\n\n**See the [project home page](https://fake.build/) for tutorials and the [API documentation](https://fake.build/reference/index.html) for various FAKE modules.**\n\n## Requirements\n\nFake runner requires .Net v6 SDK to be installed on the machine to run it. .Net v6 was chosen since it is the current LTS release of .Net\n\n\u003e FAKE 5 doesn't have this requirement. You can use FAKE 5 runner without having .NET 6 SDK installed since it will default to NETSTANDARD2.0 assemblies. But we advice to see the options available to run your build script in [Different Ways to run FAKE](https://fake.build/guide/getting-started.html#Different-ways-to-run-FAKE)\n\nFake modules has target frameworks of `net6` and `netstandard2.0`. Please [see this link](https://docs.microsoft.com/en-us/dotnet/standard/net-standard?tabs=net-standard-2-0) which lists the supported .Net and .NET Framework versions by `netstandard2.0`\n\n## Installation\n\n* Either: Download and install the [Dotnet SDK](https://www.microsoft.com/net/learn/get-started) and run `dotnet tool restore` followed by `dotnet fake build`\n* Or: Install FAKE 5 or later (for example via `choco install fake -pre`) and run `fake build`\n\n\u003e Note: You can find more details on the [contributing page](https://fake.build/guide/contributing.html)\n\nMake sure to have long path enabled: [see how to enable long paths](https://superuser.com/questions/1119883/windows-10-enable-ntfs-long-paths-policy-option-missing)\nOtherwise the test-suite will fail (However, the compilation should work)\n\n## Usage\n\nSee detailed instructions on how to use FAKE in the [getting started guide](https://fake.build/guide/getting-started.html).\n\n## NuGet Packages\n\n| Package Name         | Nuget                                                                                                                |\n| -------------------- | -------------------------------------------------------------------------------------------------------------------- |\n| `Fake-Cli`           | [![NuGet Badge](https://buildstats.info/nuget/Fake-Cli)](https://www.nuget.org/packages/Fake-Cli)                    |\n| `Fake.Core.Target`   | [![NuGet Badge](https://buildstats.info/nuget/Fake.Core.Target)](https://www.nuget.org/packages/Fake.Core.Target)    |\n| `Fake.Core.Context`  | [![NuGet Badge](https://buildstats.info/nuget/Fake.Core.Context)](https://www.nuget.org/packages/Fake.Core.Context)  |\n| Legacy FAKE          | [![NuGet Badge](https://buildstats.info/nuget/FAKE)](https://www.nuget.org/packages/FAKE)                            |\n\n## Contributing\n\nSee the [contributing page](https://fake.build/guide/contributing.html).\n\n## Maintainers\n\nAlthough this project is hosted in the [fsprojects](https://github.com/fsprojects) organization, it is _not_ maintained and managed by the F# Core Engineering Group. The F# Core Engineering Group acknowledges that the independent owner and maintainer of this project is [Steffen Forkmann](https://github.com/forki).\n","funding_links":[],"categories":["Table of Contents","F# #","Alternatives"],"sub_categories":["Compilation"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffsprojects%2FFAKE","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffsprojects%2FFAKE","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffsprojects%2FFAKE/lists"}