NAnt SDK Documentation - v0.85-nightly-2005-11-09

FrameworkInfo Constructor 

[This is preliminary documentation and subject to change.]

Initializes a new instance of the FrameworkInfo class with a name, description, version, runtime engine, directory information and properties.

[Visual Basic]
Public Sub New( _
   ByVal name As String, _
   ByVal family As String, _
   ByVal description As String, _
   ByVal version As Version, _
   ByVal clrVersion As Version, _
   ByVal frameworkDir As String, _
   ByVal sdkDir As String, _
   ByVal frameworkAssemblyDir As String, _
   ByVal runtimeEngine As String, _
   ByVal project As Project _
)
[C#]
public FrameworkInfo(
   string name,
   string family,
   string description,
   Version version,
   Version clrVersion,
   string frameworkDir,
   string sdkDir,
   string frameworkAssemblyDir,
   string runtimeEngine,
   Project project
);

Parameters

name
The name of the framework.
family
The family of the framework.
description
The description of the framework.
version
The version number of the framework.
clrVersion
The Common Language Runtime version of the framework.
frameworkDir
The directory of the framework.
sdkDir
The directory containing the SDK tools for the framework, if available.
frameworkAssemblyDir
The directory containing the system assemblies for the framework.
runtimeEngine
The name of the runtime engine, if required.
project
The Project used to initialized the framework.

Remarks

Missing <remarks> documentation for M:NAnt.Core.FrameworkInfo.#ctor(System.String,System.String,System.String,System.Version,System.Version,System.String,System.String,System.String,System.String,NAnt.Core.Project)

See Also

FrameworkInfo Class | NAnt.Core Namespace