![]() |
VOOZH | about |
dotnet add package Fake.Core.String --version 6.1.4
NuGet\Install-Package Fake.Core.String -Version 6.1.4
<PackageReference Include="Fake.Core.String" Version="6.1.4" />
<PackageVersion Include="Fake.Core.String" Version="6.1.4" />Directory.Packages.props
<PackageReference Include="Fake.Core.String" />Project file
paket add Fake.Core.String --version 6.1.4
#r "nuget: Fake.Core.String, 6.1.4"
#:package Fake.Core.String@6.1.4
#addin nuget:?package=Fake.Core.String&version=6.1.4Install as a Cake Addin
#tool nuget:?package=Fake.Core.String&version=6.1.4Install as a Cake Tool
"FAKE - F# Make" is a cross platform build automation system. Due to its integration in F#, all the benefits of the .NET Framework and functional programming can be used, including the extensive class library, powerful debuggers and integrated development environments like Visual Studio or MonoDevelop, which provide syntax highlighting and code completion.
The new DSL was designed to be succinct, typed, declarative, extensible and easy to use.
Here is an example to get a glimpse on FAKE:
// build.fsx
#r "paket:
nuget Fake.Core.Trace
nuget Fake.Core.Target //"
// include Fake modules, see Fake modules section
open Fake.Core
// *** Define Targets ***
Target.create "Clean" (fun _ ->
Trace.log " --- Cleaning stuff --- "
)
Target.create "Build" (fun _ ->
Trace.log " --- Building the app --- "
)
Target.create "Deploy" (fun _ ->
Trace.log " --- Deploying app --- "
)
open Fake.Core.TargetOperators
// *** Define Dependencies ***
"Clean"
==> "Build"
==> "Deploy"
// *** Start Build ***
Target.runOrDefault "Deploy"
This example pulls Fake's Target and Trace modules and define three targets: Clean, Build, and Deploy. By analogy with a .Net project;
Clean target can be used to clean the project before a build,Build target to call MSBuild or any build steps that are required for you application,Deploy target can push your built project to a cloud service.At the bottom, the example define target dependencies, which specify that a Deploy must run after a Build which must run after a Clean.
See the project home page for tutorials and the API documentation for various FAKE modules.
Fake 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
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
Fake modules has target frameworks of net6 and netstandard2.0. Please see this link which lists the supported .Net and .NET Framework versions by netstandard2.0
dotnet tool restore followed by dotnet fake buildchoco install fake -pre) and run fake buildNote: You can find more details on the contributing page
Make sure to have long path enabled: see how to enable long paths Otherwise the test-suite will fail (However, the compilation should work)
See detailed instructions on how to use FAKE in the getting started guide.
| Package Name | Nuget |
|---|---|
Fake-Cli |
๐ NuGet Badge |
Fake.Core.Target |
๐ NuGet Badge |
Fake.Core.Context |
๐ NuGet Badge |
| Legacy FAKE | ๐ NuGet Badge |
See the contributing page.
Although this project is hosted in the 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.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 is compatible. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 was computed. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 was computed. |
| .NET Framework | net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
Showing the top 5 NuGet packages that depend on Fake.Core.String:
| Package | Downloads |
|---|---|
|
Fake.IO.FileSystem
FAKE - F# Make - is a build automation tool for .NET. Tasks and dependencies are specified in a DSL which is integrated in F#. |
|
|
Fake.Core.Process
FAKE - F# Make - is a build automation tool for .NET. Tasks and dependencies are specified in a DSL which is integrated in F#. |
|
|
Fake.DotNet.MSBuild
FAKE - F# Make - is a build automation tool for .NET. Tasks and dependencies are specified in a DSL which is integrated in F#. |
|
|
Fake.Core.Target
FAKE - F# Make - is a build automation tool for .NET. Tasks and dependencies are specified in a DSL which is integrated in F#. |
|
|
Fake.DotNet.Cli
FAKE - F# Make - is a build automation tool for .NET. Tasks and dependencies are specified in a DSL which is integrated in F#. |
Showing the top 1 popular GitHub repositories that depend on Fake.Core.String:
| Repository | Stars |
|---|---|
|
mathnet/mathnet-numerics
Math.NET Numerics
|
| Version | Downloads | Last Updated |
|---|---|---|
| 6.1.4 | 177,493 | 10/26/2025 |
| 6.1.3 | 315,113 | 9/26/2024 |
| 6.1.2 | 6,683 | 9/24/2024 |
| 6.1.1 | 13,541 | 9/1/2024 |
| 6.1.0 | 16,725 | 8/5/2024 |
| 6.0.0 | 431,801 | 2/21/2023 |
| 6.0.0-beta001 | 7,407 | 12/21/2022 |
| 6.0.0-alpha004 | 8,833 | 11/17/2022 |
| 6.0.0-alpha003 | 6,783 | 11/11/2022 |
| 6.0.0-alpha002 | 6,706 | 11/1/2022 |
| 6.0.0-alpha001 | 6,784 | 11/1/2022 |
| 5.23.1 | 231,414 | 10/21/2022 |
| 5.23.0 | 84,501 | 8/1/2022 |
| 5.23.0-alpha002 | 15,219 | 7/22/2022 |
| 5.23.0-alpha001 | 6,798 | 7/15/2022 |
| 5.22.0 | 214,593 | 2/14/2022 |
| 5.21.1 | 28,841 | 1/30/2022 |
| 5.21.0 | 27,666 | 1/24/2022 |
| 5.21.0-alpha004 | 7,088 | 1/6/2022 |
| 5.21.0-alpha003 | 9,456 | 11/11/2021 |
BUGFIX: Fixes for the .NET CDN changes described at https://github.com/dotnet/core/issues/9671, thanks @richlander, @Numpsy
BUGFIX: Update NuGet package dependencies to pick up security fixes, refs https://github.com/fsprojects/FAKE/issues/2871. thanks @Numpsy - https://github.com/fsprojects/FAKE/pull/2872
BUGFIX: Fix documentation articles links, thanks @jhromadik - https://github.com/fsprojects/FAKE/pull/2842
ENHANCEMENT: Parse references at end of changelog as separate component, thanks @florenzen - https://github.com/fsprojects/FAKE/pull/2779
ENHANCEMENT: In Fake.Dotnet.Cli, parse global.json using System.Text.Json instead of Newtonsoft.Json, thanks @Numpsy - https://github.com/fsprojects/FAKE/pull/2839
ENHANCEMENT: Discover VSTest and MSTest using VSWhere, thanks @farlee2121 - https://github.com/fsprojects/FAKE/pull/2843