Table of Contents

Class PlannedFile

Namespace
Refitter.Core
Assembly
Refitter.Core.dll

Represents a planned output file with its relative path and generated content.

public sealed record PlannedFile : IEquatable<PlannedFile>
Inheritance
PlannedFile
Implements
Inherited Members

Constructors

PlannedFile(string, string)

Represents a planned output file with its relative path and generated content.

public PlannedFile(string Path, string Content)

Parameters

Path string

The relative file path for the output.

Content string

The generated code content.

Properties

Content

The generated code content.

public string Content { get; init; }

Property Value

string

Path

The relative file path for the output.

public string Path { get; init; }

Property Value

string