Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.99 KB

File metadata and controls

41 lines (32 loc) · 1.99 KB
title GenerateTrustInfo Task
description Use the MSBuild GenerateTrustInfo task to generate the application trust from the base manifest and TargetZone and ExcludedPermissions parameters.
ms.date 11/04/2016
ms.topic reference
dev_langs
VB
CSharp
C++
helpviewer_keywords
MSBuild, GenerateTrustInfo task
GenerateTrustInfo task [MSBuild]
author ghogen
ms.author ghogen
ms.subservice msbuild

GenerateTrustInfo task

Generates the application trust from the base manifest, and from the TargetZone and ExcludedPermissions parameters.

Parameters

The following table describes the parameters of the GenerateTrustInfo task.

Parameter Description
ApplicationDependencies Optional xref:Microsoft.Build.Framework.ITaskItem[] parameter.

Specifies the dependent assemblies.
BaseManifest Optional xref:Microsoft.Build.Framework.ITaskItem parameter.

Specifies the base manifest to generate the application trust from.
ExcludedPermissions Optional String parameter.

Specifies one or more semicolon-separated permission identity values to be excluded from the zone default permission set.
TargetZone Optional String parameter.

Specifies a zone default permission set, which is obtained from machine policy.
TrustInfoFile Required xref:Microsoft.Build.Framework.ITaskItem output parameter.

Specifies the file that contains the application security trust information.

Remarks

In addition to having the parameters that are listed in the table, this task inherits parameters from the xref:Microsoft.Build.Tasks.TaskExtension class, which itself inherits from the xref:Microsoft.Build.Utilities.Task class. For a list of these additional parameters and their descriptions, see TaskExtension base class.

See also