Class PlannedFile
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
Properties
Content
The generated code content.
public string Content { get; init; }
Property Value
Path
The relative file path for the output.
public string Path { get; init; }