C# Class NAnt.DotNet.Tasks.VbcTask

Inheritance: NAnt.DotNet.Tasks.CompilerBase
Show file Open project: skolima/NAnt Class Usage Examples

Private Properties

Property Type Description

Protected Methods

Method Description
GetResourceLinkage ( string dependentFile, CultureInfo resourceCulture ) : ResourceLinkage

Finds the correct namespace/classname for a resource file from the given dependent source file, and ensure the RootNamespace is prefixed.

NeedsCompiling ( ) : bool

Determines whether compilation is needed.

WriteConditionalCompilationConstants ( TextWriter writer ) : void

Writes conditional compilation constants to the specified TextWriter.

WriteOptions ( TextWriter writer ) : void

Writes the compiler options to the specified TextWriter.

Method Details

GetResourceLinkage() protected method

Finds the correct namespace/classname for a resource file from the given dependent source file, and ensure the RootNamespace is prefixed.
protected GetResourceLinkage ( string dependentFile, CultureInfo resourceCulture ) : ResourceLinkage
dependentFile string The file from which the resource linkage of the resource file should be determined.
resourceCulture System.Globalization.CultureInfo The culture of the resource file for which the resource linkage should be determined.
return ResourceLinkage

NeedsCompiling() protected method

Determines whether compilation is needed.
protected NeedsCompiling ( ) : bool
return bool

WriteConditionalCompilationConstants() protected method

Writes conditional compilation constants to the specified TextWriter.
protected WriteConditionalCompilationConstants ( TextWriter writer ) : void
writer System.IO.TextWriter The to which the conditional compilation constants should be written.
return void

WriteOptions() protected method

Writes the compiler options to the specified TextWriter.
protected WriteOptions ( TextWriter writer ) : void
writer System.IO.TextWriter to which the compiler options should be written.
return void