ContentToCopy Pennington.Content
A static file to copy to the output directory.
Properties
OutputPathFilePath- Destination path in the generated site.
SourcePathFilePath- Source file to copy.
Constructors
ContentToCopy
#public ContentToCopy(FilePath SourcePath, FilePath OutputPath)
A static file to copy to the output directory.
Parameters
SourcePathFilePath- Source file to copy.
OutputPathFilePath- 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; }
}