Task Script Project Element
X-Ref:
- Ast Task Script Project Node
- Ast Script Project Node
- Ast Scope Boundary Node
Attributes
Attribute | API Type | Default | Description |
---|---|---|---|
Name | String | Specifies the name of the object. This name can be used to reference this object from anywhere else in the program. This is a required property | |
EntryPoint | String | "Main" | This value specifies the name of the method that will server as the entry point for the project assembly. |
Id | Guid | 00000000-0000-0000-0000-000000000000 | Allows the developer to specify a unique identifier (GUID) for the script project. This can be used to retain a consistent ID between builds. |
LogicalDisplayFolder | String | string.Empty | Specifies a path that should be used for organizing the tree display of this object in the Logical View in BimlStudio. |
ProjectCoreName | String | This value specifies the name of the script project and its resulting build outputs. | |
ScriptLanguage | ScriptProjectLanguage | CSharp | This value specifies the source code language to use for the script project. |
TargetFrameworkVersion | ScriptProjectTargetFrameworkVersion | Unspecified | Specifies the target .NET Framework version that should be used for this Script Project. If unspecified, the target version will be selected based on the SSIS target build version. |
VstaMajorVersion | Int32 | 2 | Specifies the major version of Visual Studio Tools for Applications (VSTA) to use for emitting the project code. The default is 2 and this should only be changed in advanced emission scenarios. |
VstaMinorVersion | Int32 | 1 | Specifies the minor version of Visual Studio Tools for Applications (VSTA) to use for emitting the project code. The default is 1 and this should only be changed in advanced emission scenarios. |
Collection Children
Child | API Type | Description |
---|---|---|
<Annotations> <Annotation /> </Annotations> | AstAnnotationNode | This is a collection of annotation items that can be used to specify documentation, tags, or other information. Annotations are particularly useful for storing information about nodes that can be used by BimlScript code. |
<AssemblyReferences> <AssemblyReference /> </AssemblyReferences> | AstScriptProjectAssemblyReferenceNode | This is a collection of references to assemblies that will be referenced by the script project. |
<Files> Multiple Choices... </Files> | AstScriptProjectFileBaseNode | This is a collection of file definitions that will be used to build the project. |
<ReadOnlyVariables> <Variable /> </ReadOnlyVariables> | AstScriptProjectVariableReferenceNode | This is a collection of references to variables that will be exposed to the script project user code as read-only variables. |
<ReadWriteVariables> <Variable /> </ReadWriteVariables> | AstScriptProjectVariableReferenceNode | This is a collection of references to variables that will be exposed to the script project user code as read/write variables. |
<Resources> <Resource /> </Resources> | AstScriptProjectResourcesNode | This is a collection of embedded resource definitions that will be used to store resource data for the script project. |
<Settings> <Setting /> </Settings> | AstScriptProjectSettingsNode | This is a collection of setting definitions that will be used to store setting data for the script project. |