<customHostSpecified> element (Office development in Visual Studio)
Applies to: Visual Studio Visual Studio for Mac
Note
This article applies to Visual Studio 2017. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here
The customHostSpecified
element indicates that this solution is not a stand-alone application. Office solutions contain components that are hosted inside Microsoft Office applications.
Syntax
<customHostSpecified />
Elements and attributes
The customHostSpecified
element is required for Office solutions. This element is in the co.v1
namespace and specifies that this deployment contains a component that will be deployed inside of a custom host, and is not a stand-alone application.
This element is a child of the first <entrypoint>
element in the application manifest. There can be no other child elements in that <entrypoint>
element or ClickOnce will raise a validation error during installation.
This element has no attributes and no child elements.
Example
The following code example illustrates the customHostSpecified
element in an application manifest for an Office solution. This code example is part of a larger example provided in Application manifests for Office solutions.
<entryPoint>
<co.v1:customHostSpecified />
</entryPoint>