Table of Contents

Class T4ManifestLoader

Namespace
JD.Domain.T4.Shims
Assembly
JD.Domain.T4.Shims.dll

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

path string

The 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

path string

The 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

path string

The path to the manifest JSON file.

Returns

DomainManifest

The loaded manifest, or null if not found.