Skip to content

yjpark/dap.build.fsharp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

61 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dap.Build is a simple library for simplify Fake target creation for DotNet projects.

Dependencies

DotNet Core

DotNet Tools

Need paket and fake command in path

Recommend to install with dotnet tool

Install the first time

dotnet tool install --global paket
dotnet tool install --global fake-cli

Update to latest version

dotnet tool update --global paket
dotnet tool update --global fake-cli

Note: need to add ~/.dotnet/tools to PATH

Current main features

  • Create individual targets for multiple projects (clean/restore/build)
  • Also create aggregated targets to do actions upon all projects
  • For libraries, can generate nuget packages, also can push to either nuget.org or private progit server
  • For applications, can also run certain project
  • Inject generated nuget package into local nuget cache, for easier local development

Sample build.fsx

#r "paket: groupref Build //"
#load ".fake/build.fsx/intellisense.fsx"

open Fake.Core
open Fake.IO.Globbing.Operators

module NuGet = Dap.Build.NuGet

let feed =
    NuGet.Feed.Create (
        server = NuGet.ProGet "https://nuget.yjpark.org/nuget/dap",
        apiKey = NuGet.Environment "API_KEY_nuget_yjpark_org"
    )

let projects =
    !! "lib/Dap.FlatBuffers/*.csproj"
    ++ "src/Fable.Dap.Prelude/*.fsproj"
    ++ "src/Dap.Prelude/*.fsproj"
    ++ "src/Fable.Dap.Context/*.fsproj"
    ++ "src/Dap.Context/*.fsproj"
    ++ "src/Fable.Dap.Platform/*.fsproj"
    ++ "src/Dap.Platform/*.fsproj"
    ++ "src/Fable.Dap.WebSocket/*.fsproj"
    ++ "src/Dap.WebSocket/*.fsproj"
    ++ "src/Fable.Dap.Remote/*.fsproj"
    ++ "src/Dap.Remote/*.fsproj"
    ++ "src/Fable.Dap.Dsl/*.fsproj"
    ++ "src/Dap.Archive/*.fsproj"

NuGet.createAndRun NuGet.release feed project

Links

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages