TaskPropertyInfo Constructor (String^, Type^, Boolean, Boolean)
Visual Studio 2015
Encapsulates a list of parameters declared in the task.
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.
Assembly: Microsoft.Build.Framework (in Microsoft.Build.Framework.dll)
public: TaskPropertyInfo( String^ name, Type^ typeOfParameter, bool output, bool required )
Parameters
- name
-
Type:
System::String^
The name of the parameter
- typeOfParameter
-
Type:
System::Type^
The type of the parameter
- output
-
Type:
System::Boolean
True if the parameter is both an output and an input parameter. False if the parameter is only an input parameter.
- required
-
Type:
System::Boolean
True if the parameter must be supplied to each invocation of the task.
Show: