Class T4ManifestLoader
Loads domain manifests for use in T4 templates.
public static class T4ManifestLoader
- Inheritance
-
T4ManifestLoader
- Inherited Members
Methods
LoadManifest(string)
Loads a domain manifest from a JSON file.
public static DomainManifest LoadManifest(string path)
Parameters
pathstringThe path to the manifest JSON file.
Returns
- DomainManifest
The loaded manifest.
LoadSnapshot(string)
Loads a domain snapshot from a JSON file.
public static DomainSnapshot LoadSnapshot(string path)
Parameters
pathstringThe path to the snapshot JSON file.
Returns
- DomainSnapshot
The loaded snapshot.
TryLoadManifest(string)
Tries to load a manifest from a path, returning null if not found.
public static DomainManifest? TryLoadManifest(string path)
Parameters
pathstringThe path to the manifest JSON file.
Returns
- DomainManifest
The loaded manifest, or null if not found.