Class ContentImporterContext
Provides properties that define logging behavior for the importer.
public abstract class ContentImporterContext- Inheritance
- 
      
      ContentImporterContext
- Derived
- Inherited Members
Constructors
ContentImporterContext()
Initializes a new instance of ContentImporterContext.
public ContentImporterContext()Properties
IntermediateDirectory
The absolute path to the root of the build intermediate (object) directory.
public abstract string IntermediateDirectory { get; }Property Value
Logger
Gets the logger for an importer.
public abstract ContentBuildLogger Logger { get; }Property Value
OutputDirectory
The absolute path to the root of the build output (binaries) directory.
public abstract string OutputDirectory { get; }Property Value
Methods
AddDependency(string)
Adds a dependency to the specified file. This causes a rebuild of the file, when modified, on subsequent incremental builds.
public abstract void AddDependency(string filename)Parameters
- filenamestring
- Name of an asset file.