Antda.Build 1.3.0

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Antda.Build --version 1.3.0
NuGet\Install-Package Antda.Build -Version 1.3.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Antda.Build" Version="1.3.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Antda.Build --version 1.3.0
#r "nuget: Antda.Build, 1.3.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Antda.Build as a Cake Addin
#addin nuget:?package=Antda.Build&version=1.3.0

// Install Antda.Build as a Cake Tool
#tool nuget:?package=Antda.Build&version=1.3.0

Antda.Build is a set of tasks based on Cake.Frosting library. This library simplify the building, deployment and release processes for .Net projects hosted on GitHub.

License

Features

Supported build platforms

Build platform Status
AppVeyor ✔️Supported
GitHub Actions ✔️Supported

Getting Started

  • Create build folder in the repository root.
  • Create a new console application inside. See Create a simple C# console app.
  • Then replace content of Program.cs by following code:
    using Antda.Build;
    using Antda.Build.Extensions;
    
    return BuildHostBuilder
      .CreateDefault()
      .WithProjects("ProjectFolder/ProjectName.csproj")
      .WithSource("src")
      .WithTitle("ProjectName")
      .WithRepository("GitRepositoryName", "GitRepositoryOwner")
      .UseGithubPackageSource()
      .UseNugetPackageSource()
      .Build()
      .Run(args);
    
  • Add build script in the repository root
    • For Windows add build.ps1 powreshell script with content:
    dotnet run --project ./build/Build.csproj --configuration Release -- $args
    exit $LASTEXITCODE;
    
    • For Linux add build.sh bash script with content:
    dotnet run --project ./build/Build.csproj --configuration Release -- "$@"
    

For more documentation, follow the link there Antda.Build

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.3.0 79 4/8/2024
1.2.2 254 11/15/2023
1.2.1 95 11/15/2023
1.2.0 94 11/13/2023
1.1.4 150 11/1/2023
1.1.3 113 10/26/2023
1.1.2 110 10/26/2023
1.1.1 105 10/17/2023
1.1.0 102 10/17/2023
1.0.6 416 7/15/2022
1.0.5 401 7/15/2022
1.0.4 446 6/15/2022
1.0.3 382 6/14/2022
1.0.2 403 6/8/2022
1.0.1 380 6/8/2022