Table of Contents

Interface IProjectLoader

Namespace
Loehnert.Lisrt.Scripting.Project
Assembly
Loehnert.Lisrt.Scripting.dll

Project loader for loading and writing IProjects.

public interface IProjectLoader

Methods

Load(string)

Loads the content of a file to a IProject.

IProject Load(string filePath)

Parameters

filePath string

Path to the file.

Returns

IProject

A project, built from the project file.

Save(string, IProject)

Writes the project to the file path.

void Save(string filePath, IProject project)

Parameters

filePath string

Rooted path to target file.

project IProject

Project to write.

See Also