Sitemapfy.Net 1.0.0

dotnet add package Sitemapfy.Net --version 1.0.0                
NuGet\Install-Package Sitemapfy.Net -Version 1.0.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="Sitemapfy.Net" Version="1.0.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Sitemapfy.Net --version 1.0.0                
#r "nuget: Sitemapfy.Net, 1.0.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 Sitemapfy.Net as a Cake Addin
#addin nuget:?package=Sitemapfy.Net&version=1.0.0

// Install Sitemapfy.Net as a Cake Tool
#tool nuget:?package=Sitemapfy.Net&version=1.0.0                

Sitemapfy.Net

Overview

Sitemapfy.Net is a powerful .NET 8 library that facilitates the creation, serialization, and serving of XML sitemaps in ASP.NET Core minimal API applications. This package leverages the capabilities of Functional.DotNet to provide a functional programming approach for handling sitemap generation and serialization.

Features

  • Easily convert sitemap objects to XML: Convert your sitemap objects to XML strings or streams with simple extension methods.
  • Integrate sitemap generation services: Add sitemap generation services to your ASP.NET Core application's dependency injection container.
  • Serve sitemaps through customizable endpoints: Use endpoint routing to serve your sitemaps with ease.
  • Functional programming paradigms: Utilize functional programming paradigms for error handling and result mapping.

Installation

Install the package via NuGet Package Manager:

dotnet add package Sitemapfy.Net

Or use the NuGet Package Manager Console:

Install-Package Sitemapfy.Net

Usage

Setup

  1. Define your sitemap service:
public class MySitemapService : ISiteMapService
{
    public Task<Sitemap> GenerateLocationsAsync()
    {
        // Implement your sitemap generation logic here
        return Task.FromResult(new Sitemap { /* sitemap data */ });
    }
}
  1. Configure services in your Program.cs:
var builder = WebApplication.CreateBuilder(args);

builder.Services.AddSitemap<MySitemapService>();

var app = builder.Build();

app.MapSitemap();

app.Run();
Product Compatible and additional computed target framework versions.
.NET 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.0.0 153 7/19/2024