Hangfire.Build
0.5.0
Prefix Reserved
dotnet add package Hangfire.Build --version 0.5.0
NuGet\Install-Package Hangfire.Build -Version 0.5.0
<PackageReference Include="Hangfire.Build" Version="0.5.0" />
paket add Hangfire.Build --version 0.5.0
#r "nuget: Hangfire.Build, 0.5.0"
// Install Hangfire.Build as a Cake Addin #addin nuget:?package=Hangfire.Build&version=0.5.0 // Install Hangfire.Build as a Cake Tool #tool nuget:?package=Hangfire.Build&version=0.5.0
Hangfire.Build
Psake tasks and functions for building Hangfire projects with ease, including the following tasks:
- Create NuGet packages with all files you want to include.
- Task to update common version of all projects in solution.
- Target different frameworks (net45, netstandard1.*, etc).
- Internalize assemblies with
ILRepack /internalize
(ILRepack
NuGet package required). - Run unit and integration tests from the command line.
- AppVeyor support – build version, pre-release packages for the project feed and simple build script.
Please see the Hangfire's psake-project.ps1
file to see the results.
Installation
This project is being distributed as a solution-level NuGet package, so open your Package Manager Console window and execute the following command. It needs to be installed into solution folder in order to make it possible to reference its psake-common.ps1
file from the build scripts of the current project.
> dotnet add package Hangfire.Build --package-directory packages
After installing, there are some things to be done. Please go to the packages\Hangfire.Build.*\tools
folder and copy the following files to the project root folder:
build.bat
– bootstrapper script you will call to start the build.psake-project.ps1
– template script for your project, will contain build tasks.
Configuration
Hangfire.Build project uses convention over configuration to build the project. By default it expects that your directory structure looks like this:
.nuget
– a directory with solution-wide package config andNuGet.exe
executable.build
– (created automatically) folder for build artifacts.nuspecs
– a directory where*.nuspec
files of your project live.packages
– a directory for NuGet packages for your project (this is by default in NuGet).src
– a directory where your project sources live (in a subdirectories likeHangfire.Core
).tests
– a directory where your unit and integration tests live (in a subdirectories).
For a full example, you can see the main Hangfire repository.
Tasks
For quick overview, sample Hangfire.Build project file is available here. Tasks below provide only the base functionality.
Clean
task
Cleans the build folder and executes dotnet clean
for the with the given configuration.
Restore
task
Depends on: Clean
.
Restores all the dependencies for all the projects in the current directory with the dotnet restore
command with --locked-mode
switch to ensure lock file is used.
Compile
task
Depends on: Restore
.
Simply build all the projects in the current directory, with the dotnet build
command and the given configuration. There is no magic here, except perhaps possible integration with AppVeyor. This task explicitly passes the --no-restore
switch, because depends on the explicit restore called in the Restore
task.
Version
task
Updates $src_dir\SharedAssemblyInfo.cs
(by default) file's AssemblyVersion
value and appveyor.yml
files's version
setting with the given one.
Functions
Run-XunitTests
function
Requires xunit.runners
NuGet package installed.
Arguments:
- project: String.
Executes XUnit runner for the given project. This function assumes that common project structure is being used, so it looks for the following assembly: .\tests\{project}\bin\{configuration}\{project}.dll
.
Example:
Run-XunitTests "Hangfire.Core.Tests"
Run-OpenCover
function
Requires xunit.runners
and OpenCover
NuGet package installed.
Arguments:
- project: String.
- coverage_file: String
- coverage_filter: String
Executes OpenCover with XUnit runner for the given project. This function assumes that common project structure is being used, so it looks for the following assembly: .\tests\{project}\bin\{configuration}\{project}.dll
.
Resulting coverage file is merged with an existing one, so you can use multiple projects to get merged coverage report. Please keep in mind that it is up to you to remove the coverage report file to prevent merging with old reports.
Example:
$coverage_file = "coverage.xml"
$coverage_filter = "+[Hangfire.*]* -[*.Tests]* -[*]*.Annotations.* -[*]*.Dashboard.* -[*]*.Logging.* -[*]*.ExpressionUtil.*"
Remove-File $coverage_file
Run-OpenCover "Hangfire.Core.Tests" $coverage_file $coverage_filter
Run-OpenCover "Hangfire.SqlServer.Tests" $coverage_file $coverage_filter
Run-OpenCover "Hangfire.SqlServer.Msmq.Tests" $coverage_file $coverage_filter
Repack-Assembly
function
Requires ILRepack
NuGet package installed.
Arguments:
- project: String
- assemblyies: Array of String – list of assembly names to internalize (with no
.dll
suffix). - target: String – target framework
Invokes ILRepack /internalize
to merge the given assemblies with the project's main assembly. Main assembly file is resolved as .\src\{project}\bin\{target}\{configuration}\{project}.*
, .\src\{project}\bin\{configuration}\{target}\{project}.*
or .\src\{project}\bin\{configuration}\{project}.*
. It is assumed that merging assemblies are located under the same folder as a main assembly.
After merging, the original project assembly is being overwritted with the result assembly.
Example:
Repack-Assembly "Hangfire.Core" @("NCrontab", "CronExpressionDescriptor", "Microsoft.Owin")
Collect-*
functions
These function copy build artifacts to the build
folder to simplify the building of NuGet packages and archive file generation.
Collect-Assembly {project} [{target}]
copies the *.dll
, *.xml
and *.pdb
files to the given build target folder. File names are resolved as .\src\{project}\bin\{target}\{configuration}\{project}.*
, .\src\{project}\bin\{configuration}\{target}\{project}.*
or .\src\{project}\bin\{configuration}\{project}.*
.
Example: Collect-Assembly "Hangfire.Core" "net45"
Collect-Content {file}
copies the given file to the {build_dir}\Content
folder where file
is a relative path to the project root.
Example: Collect-Content src\Hangfire.SqlServer\Install.sql
Collect-Tool {file}
copies the given file to the {build_dir}\Tools
folder where file
is a relative path to the project root.
Create-Package
function
Arguments:
- nuspec – nuspec filename without path and extension.
- version – the version of a resulting package.
This function executes nuget pack nuspecs\{nuspec}.nuspec
command and places the result into the build folder. Before running NuGet.exe
executable, it replaces all %version%
substrings in a given nuspec files and replaces them with the given version. Starting from 0.3, it also replaces %commit%
occurrences with the current commit hash to make source link work.
Example:
Create-Package "Hangfire.Build" "0.1.0"
Create-Archive
function
Arguments:
- name – file name for resulting archive, excluding path and extension.
Generates a zip archive with all files in the build folder with the given name. Since version 0.4.0 it uses PowerShell's built-in Compress-Archive
cmdlet, so don't require external executables.
Example:
Create-Archive "Hangfire-$version"
Sign-ArchiveContents
function
Arguments:
- name – file name of an archive, excluding path and extension.
- project - signing project slug on SignPath.
- configuration – artifacts configuration slug on SignPath (default value:
initial
).
Submits the given archive created with the Create-Archive
function to SignPath for signing with the given project and artifacts configuration. For tag-based builds, signing policy name is release-signing-policy
, for other builds, signing policy is test-signing-policy
.
The command is synchronous and waits for the signing to be completed. After signing, a signed archive is automatically downloaded and extracted with replacing all the files in the {build_dir}
directory with the signed ones.
Example:
Sign-ArchiveContents "Hangfire-$version" "hangfire" "zip-file-configuration"
Get-SharedVersion
function
Returns the version defined in the $src_dir\SharedAssemblyInfo.cs
file in AssemblyVersion
attribute.
Get-BuildVersion
function
Returns the version returned by the Get-SharedVersion
and adds a pre-release suffix based on AppVeyor CI build number. If APPVEYOR_REPO_TAG
environment variable is set, no pre-release suffix is being appended. Build number is being padded with 0
symbols.
Get-PackageVersion
function
If called from a build on AppVeyor, triggered by an added tag that starts with "v$version", where $version is the same as returned by a Get-BuildVersion
function (for safety reasons), then returns the rest of a tag, without the "v" letter. Otherwise returns build version.
For example, if you triggered a build by adding a tag v1.6.0-beta4
, and current version in your SharedAssemblyInfo.cs
file is 1.6.0
, then this function returns 1.6.0-beta4
. If your assembly info version is 1.5.0
, then 1.5.0
version is returned to prevent building newer versions by an accident.
Examples:
2.0.0-build-00132
– noAPPVEYOR_REPO_TAG
.2.0.0
–APPVEYOR_REPO_TAG
is set OR building locally.
Building
This project itself is build with the Hangfire.Build
scripts. So, after making the changes, please run the following command to build NuGet packages:
build
Contributing
Just make changes and create a pull request 😃 Please ensure that there is no breaking changes and it is not required to patch all current Hangfire projects.
License
This project is licensed under the MIT License.
Learn more about Target Frameworks and .NET Standard.
-
- psake (>= 4.4.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (4)
Showing the top 4 popular GitHub repositories that depend on Hangfire.Build:
Repository | Stars |
---|---|
HangfireIO/Hangfire
An easy way to perform background job processing in .NET and .NET Core applications. No Windows Service or separate process required
|
|
HangfireIO/Cronos
A fully-featured .NET library for working with Cron expressions. Built with time zones in mind and intuitively handles daylight saving time transitions
|
|
yuzd/Hangfire.Core.Extend
在1.6.5基础上给dashbord增加了搜索功能,增加在dashbord上手动添加job,提供对外SDK添加job
|
|
HangfireIO/Hangfire.Dashboard.Authorization
Some authorization filters for Hangfire's Dashboard
|
Version | Downloads | Last updated |
---|---|---|
0.5.0 | 310 | 8/22/2024 |
0.4.5 | 179 | 6/25/2024 |
0.4.4 | 391 | 6/3/2024 |
0.4.3 | 429 | 3/21/2024 |
0.4.2 | 273 | 2/20/2024 |
0.4.1 | 213 | 2/14/2024 |
0.4.0 | 277 | 2/7/2024 |
0.3.3 | 317 | 1/23/2024 |
0.3.2 | 178 | 1/22/2024 |
0.3.1 | 157 | 1/22/2024 |
0.3.0 | 154 | 1/22/2024 |
0.2.6 | 8,153 | 1/29/2018 |
0.2.5 | 4,441 | 7/7/2016 |
0.2.4 | 1,088 | 7/7/2016 |
0.2.3 | 1,081 | 7/7/2016 |
0.2.2 | 1,115 | 7/7/2016 |
0.2.1 | 1,099 | 7/6/2016 |
0.2.0 | 1,071 | 7/6/2016 |
0.1.3 | 6,257 | 12/9/2014 |
0.1.2 | 1,351 | 12/9/2014 |
0.1.1 | 1,730 | 12/8/2014 |
0.1.0 | 1,317 | 12/8/2014 |
https://github.com/HangfireIO/Hangfire.Build/releases
0.5.0
• Added — Explicit `Restore` task to ensure all the packages are restored before building.
• Changed — `Build` task now depends on the new `Restore` task and passes `--no-restore` switch to `dotnet build`.
0.4.5
• Fixed — Fix broken `Collect-Localizations` function after migrating to PowerShell 7+.
0.4.4
• Changed — The `build.bat` file is now based on the newest PowerShell.
• Fixed — Use `Get-Content` and `Set-Content` cmdlets explicitly to make scripts work with the newest PowerShell.
0.4.3
• Changed – Skip submitting an archive for signing in pull requests, because secrets aren't available.
0.4.2
• Added – Readme file and icon for the Hangfire.Build NuGet package.