C# Class FlatRedBall.Content.SourceReferencingFile

Class that defines a source and destination file relationship. This can be used by tools (such as Glue) which maintain the source/destination relationship between files.
Mostrar archivo Open project: vchelaru/FlatRedBall Class Usage Examples

Public Properties

Property Type Description
DestinationFile string
ObjectName string
SourceFile string

Public Methods

Method Description
HasTheSameFilesAs ( SourceReferencingFile otherReferencingFile ) : bool
SourceReferencingFile ( ) : System

Instantiates a new SourceReferencingFile instance.

SourceReferencingFile ( string sourceFile, string destinationFile ) : System

Instantiates a new SourceReferencingFile instance using the argument source and destination files.

ToString ( ) : string

Method Details

HasTheSameFilesAs() public method

public HasTheSameFilesAs ( SourceReferencingFile otherReferencingFile ) : bool
otherReferencingFile SourceReferencingFile
return bool

SourceReferencingFile() public method

Instantiates a new SourceReferencingFile instance.
public SourceReferencingFile ( ) : System
return System

SourceReferencingFile() public method

Instantiates a new SourceReferencingFile instance using the argument source and destination files.
public SourceReferencingFile ( string sourceFile, string destinationFile ) : System
sourceFile string The source file name to use.
destinationFile string The destination file name to use.
return System

ToString() public method

public ToString ( ) : string
return string

Property Details

DestinationFile public_oe property

The destination file - the file which will be created when the source is built.
public string DestinationFile
return string

ObjectName public_oe property

public string ObjectName
return string

SourceFile public_oe property

The source file - the file which will be built to create the destination.
public string SourceFile
return string