This documentation is also published as Markdown for efficient machine reading: the whole site is indexed at /llms.txt, and every page has a clean Markdown copy at the same URL with .md appended. These are generated from the same source and cost far fewer tokens to read than this rendered HTML.

Skip to main content Skip to navigation

ContentToCopy Pennington.Content

A static file to copy to the output directory.

Properties

OutputPath FilePath
Destination path in the generated site.
SourcePath FilePath
Source file to copy.

Constructors

ContentToCopy

#
public ContentToCopy(FilePath SourcePath, FilePath OutputPath)

A static file to copy to the output directory.

Parameters

SourcePath FilePath
Source file to copy.
OutputPath FilePath
Destination path in the generated site.

Pennington.Content.ContentToCopy

namespace Pennington.Content;

/// A static file to copy to the output directory.
public record ContentToCopy
{
    /// A static file to copy to the output directory.
    
public ContentToCopy(FilePath SourcePath, FilePath OutputPath)
; /// Destination path in the generated site.
public FilePath OutputPath { get; set; }
/// Source file to copy.
public FilePath SourcePath { get; set; }
}