Skip to content

Latest commit

 

History

History
47 lines (39 loc) · 2.88 KB

requiresframework35sp1assembly-task.md

File metadata and controls

47 lines (39 loc) · 2.88 KB
title description ms.date ms.topic dev_langs helpviewer_keywords author ms.author manager ms.subservice
RequiresFramework35SP1Assembly Task
Learn how MSBuild uses the RequiresFramework35SP1Assembly task to determine whether the application requires .NET Framework 3.5 SP1.
11/04/2016
reference
VB
CSharp
C++
RequiresFramework35SP1Assembly task [MSBuild]
MSBuild, RequiresFramework35SP1Assembly task
ghogen
ghogen
mijacobs
msbuild

RequiresFramework35SP1Assembly task

Determines whether the application requires the .NET Framework 3.5 SP1.

Parameters

The following table describes the parameters of the RequiresFramework35SP1Assembly task.

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

Specifies the assemblies that are referenced in the application.
CreateDesktopShortcut Optional Boolean parameter.

If true, creates a shortcut icon on the desktop during installation.
DeploymentManifestEntryPoint Optional xref:Microsoft.Build.Framework.ITaskItem parameter.

Specifies the manifest file name for the application.
EntryPoint Optional xref:Microsoft.Build.Framework.ITaskItem parameter.

Specifies the assembly that should be executed when the application is run.
ErrorReportUrl Optional String parameter.

Specifies the Web site that is displayed in dialog boxes that are encountered during ClickOnce installations.
Files Optional xref:Microsoft.Build.Framework.ITaskItem[] parameter.

Specifies the list of files that will be deployed when the application is published.
ReferencedAssemblies Optional xref:Microsoft.Build.Framework.ITaskItem[] parameter.

Specifies the assemblies that are referenced in the project.
RequiresMinimumFramework35SP1 Optional Boolean output parameter.

If true, the application requires the .NET Framework 3.5 SP1.
SigningManifests Optional Boolean output parameter.

If true, the ClickOnce manifests are signed.
SuiteName Optional String parameter.

Specifies the name of the folder on the Start menu in which the application will be installed.
TargetFrameworkVersion Optional String parameter.

Specifies the version of the .NET Framework that this application targets.

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