Deploying a VSTO 3.0 solution for the Office 2007 using Windows Installers

来源:互联网 发布:vmware linux版 编辑:程序博客网 时间:2024/05/16 06:53

地址:http://download.csdn.net/source/1736101

 

 

VSTO 3.0 MSI deployment code samples
 

Description

The code samples are written in Visual Basic and C#. The following list of projects and samples describes how you can integrate these into your solution to deploy with a Windows Installer file.

Packages - you can add prerequisites to your installer.
1. Office 2003 PIAs.
2. Office 2007 PIAs.
3. VSTO runtime Japanese language pack.

Projects - you can add these custom actions to your setup project.
1. Component Check - check if the Office Primary Interop Assemblies are installed
2. ClickOnceCustomActions - install into the ClickOnce cache
3. DocumentManifestCustomActions - update the document custom properties to point to the assembly
4. InclusionListCustomActions - add an entry to pre-trust your solution

Samples
1. Basic installer - Hello World add-in
2. Additional components - Hello Word add-in plus a helper library (showing deployment with multiple files)
3. Inclusion list - custom action to create an inclusion list entry with the location of the deployment manifest and the public key of the certificate used to sign the manifests
4. Change Manifest - custom action to update the document's custom properties to point to the deployment manifest
5. ClickOnce cache - custom action to install the solution into the ClickOnce cache

 

 

 

URL:http://code.msdn.microsoft.com/VSTO3MSI/Release/ProjectReleases.aspx?ReleaseId=729