ProjectRootElement.CreateUsingTaskElement Method (String, String, String)
Adds a UsingTask element to the project.
MSBuild is now included in Visual Studio instead of the .NET Framework. You can use MSBuild 12.0 side-by-side with versions previously deployed with the .NET Framework.For more information, see What's New in MSBuild 12.0.
Namespace: Microsoft.Build.Construction
Assembly: Microsoft.Build (in Microsoft.Build.dll)
Syntax
'Declaration
Public Function CreateUsingTaskElement ( _
taskName As String, _
assemblyFile As String, _
assemblyName As String _
) As ProjectUsingTaskElement
public ProjectUsingTaskElement CreateUsingTaskElement(
string taskName,
string assemblyFile,
string assemblyName
)
public:
ProjectUsingTaskElement^ CreateUsingTaskElement(
String^ taskName,
String^ assemblyFile,
String^ assemblyName
)
member CreateUsingTaskElement :
taskName:string *
assemblyFile:string *
assemblyName:string -> ProjectUsingTaskElement
public function CreateUsingTaskElement(
taskName : String,
assemblyFile : String,
assemblyName : String
) : ProjectUsingTaskElement
Parameters
taskName
Type: System.StringThe task name.
assemblyFile
Type: System.StringThe file path to the assembly.
assemblyName
Type: System.StringThe name of the assembly to load.
Return Value
Type: Microsoft.Build.Construction.ProjectUsingTaskElement
Returns the UsingTask element.
Remarks
Caller must add the UsingTask element to the location of choice in the project. Either the assemblyName or assemblyFile must be null, but not both.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.