Halifax.Core 0.0.18

There is a newer version of this package available.
See the version list below for details.
dotnet add package Halifax.Core --version 0.0.18
NuGet\Install-Package Halifax.Core -Version 0.0.18
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="Halifax.Core" Version="0.0.18" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Halifax.Core --version 0.0.18
#r "nuget: Halifax.Core, 0.0.18"
#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 Halifax.Core as a Cake Addin
#addin nuget:?package=Halifax.Core&version=0.0.18

// Install Halifax.Core as a Cake Tool
#tool nuget:?package=Halifax.Core&version=0.0.18
Package NuGet
Halifax.Api     NuGet
Halifax.Core     NuGet
Halifax.Models     NuGet

Halifax Service Foundation

Simplistic libraries for complex projects. Halifax libraries are designed to speed up API service development process by encapsulating common functionality required for all microservices, allowing developers to focus on the business logic instead of copy-pasting the boilerplate code from project to project. The libraries are focussed on the following aspects of any application:

  • ✅ Exception handling
  • ✅ API models
  • ✅ Swagger
  • ✅ JWT Auth
  • ✅ Logging
  • ✅ CORS

Installation

Install the API library using nuget package with Package Manager Console:

Install-Package Halifax.Api

Or using .NET CLI:

dotnet add package Halifax.Api

Getting Started

Please refer to the Peggy's Cove example API project Startup.cs file for more details but basically all you need is to have this in your startup class:

public class Startup
{
    public void ConfigureServices(IServiceCollection services)
    {
        services.AddHalifax();
    }

    public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
    {
        app.UseHalifax();
    }
}

This enables routing with controllers and exception handling.

Models

It's very beneficial if all API responses follow the same format. In order to achieve it there is a model called ApiResponse. It's designed to return response data, empty data or error information in the same consistent format. Here are the main use cases:

// Return API response with your model
return ApiResponse.With(model);

// Return empty API response
return ApiResponse.Empty;

When API response is used for all APIs in the project the response will always be of a format:

{
    data: {...} // your model
    success: true/false,
    error: { // null if successful
        type: "ArgumentNullException",
        message: "Email is required",
        trace: "(126) ArgumentNullException was thrown ... (typical exception stack trace)"
    }
}

MIT License

Copyright (c) 2020 Andrei M

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 was computed.  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 was computed.  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 was computed.  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 (2)

Showing the top 2 NuGet packages that depend on Halifax.Core:

Package Downloads
Halifax.Api

Halifax Service Foundation API library

Halifax.Http

Halifax Service Foundation HttpClient library

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.1.1 180 3/11/2024
3.1.0 207 2/11/2024
3.0.2 225 1/24/2024
3.0.1 117 12/29/2023
3.0.0 523 11/17/2023
2.0.7 143 10/30/2023
2.0.6 286 9/14/2023
2.0.5 304 8/16/2023
2.0.4 306 7/9/2023
2.0.3 603 3/20/2023
2.0.2 234 3/20/2023
2.0.1 416 2/24/2023
2.0.0 570 12/21/2022
1.2.9 369 12/13/2022
1.2.8 1,053 10/16/2022
1.2.7 663 9/21/2022
1.2.6 734 8/19/2022
1.2.5 884 7/11/2022
1.2.4 950 6/22/2022
1.2.3 538 6/20/2022
1.2.2 525 6/14/2022
1.2.1 642 6/13/2022
1.2.0 400 6/13/2022
1.1.6 618 6/11/2022
1.1.5 1,382 6/1/2022
1.1.4 511 6/1/2022
1.1.3 506 6/1/2022
1.1.2 368 6/1/2022
1.1.1 617 5/20/2022
1.1.0 912 4/8/2022
1.0.3 756 3/12/2022
1.0.2 1,069 12/19/2021
1.0.1 566 12/10/2021
1.0.0 636 12/7/2021
0.3.0 528 12/6/2021
0.2.2 320 12/3/2021
0.2.1 351 11/22/2021
0.2.0 550 11/9/2021
0.1.1 408 11/3/2021
0.1.0 468 10/20/2021
0.0.21 389 10/20/2021
0.0.20 397 10/18/2021
0.0.19 552 10/4/2021
0.0.18 401 10/4/2021
0.0.17 490 9/16/2021
0.0.15 636 8/27/2021
0.0.14 495 8/27/2021
0.0.13 310 8/27/2021
0.0.12 311 8/27/2021
0.0.11 372 8/17/2021
0.0.10 295 8/17/2021
0.0.9 312 8/17/2021
0.0.8 307 8/16/2021
0.0.7 896 8/9/2021
0.0.6 502 8/9/2021
0.0.5 296 7/31/2021
0.0.4 321 7/31/2021
0.0.3 310 7/31/2021
0.0.2 303 7/31/2021
0.0.1 297 7/31/2021

v0.0.x - Initial release