IProduct Interface
This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Represents a product that the BootstrapperBuilder finds in the Path property.
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.Tasks.Deployment.Bootstrapper
Assembly: Microsoft.Build.Tasks.Core (in Microsoft.Build.Tasks.Core.dll)
Syntax
'Declaration
<ComVisibleAttribute(True)> _
<GuidAttribute("9E81BE3D-530F-4a10-8349-5D5947BA59AD")> _
<InterfaceTypeAttribute(ComInterfaceType.InterfaceIsDual)> _
Public Interface IProduct
[ComVisibleAttribute(true)]
[GuidAttribute("9E81BE3D-530F-4a10-8349-5D5947BA59AD")]
[InterfaceTypeAttribute(ComInterfaceType.InterfaceIsDual)]
public interface IProduct
[ComVisibleAttribute(true)]
[GuidAttribute(L"9E81BE3D-530F-4a10-8349-5D5947BA59AD")]
[InterfaceTypeAttribute(ComInterfaceType::InterfaceIsDual)]
public interface class IProduct
[<ComVisibleAttribute(true)>]
[<GuidAttribute("9E81BE3D-530F-4a10-8349-5D5947BA59AD")>]
[<InterfaceTypeAttribute(ComInterfaceType.InterfaceIsDual)>]
type IProduct = interface end
public interface IProduct
The IProduct type exposes the following members.
Properties
Name | Description | |
---|---|---|
Includes | Infrastructure. Gets all products that this product installs.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. | |
Name | Infrastructure. Gets a human-readable name for this product.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. | |
ProductBuilder | Infrastructure. Gets the ProductBuilder representation of this product.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. | |
ProductCode | Infrastructure. Gets the unique product identifier of this product.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. |
Top