You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`ModuleAssemblyName`|Optional `String` parameter.<br /><br /> Specifies the name of the assembly that this module will be a part of.|
55
55
|`NoConfig`|Optional `Boolean` parameter.<br /><br /> If `true`, tells the compiler not to compile with the *csc.rsp* file. For more information, see [-noconfig (C# compiler options)](/dotnet/csharp/language-reference/compiler-options/noconfig-compiler-option).|
56
56
|`NoLogo`|Optional `Boolean` parameter.<br /><br /> If `true`, suppresses display of compiler banner information. For more information, see [-nologo (C# compiler options)](/dotnet/csharp/language-reference/compiler-options/nologo-compiler-option).|
57
-
|`NoStandardLib`|Optional `Boolean` parameter.<br /><br /> If `true`, prevents the import of mscorlib.dll, which defines the entire System namespace. Use this parameter if you want to define or create your own System namespace and objects. For more information, see [-nostdlib (C# compiler options)](/dotnet/csharp/language-reference/compiler-options/nostdlib-compiler-option).|
57
+
|`NoStandardLib`|Optional `Boolean` parameter.<br /><br /> If `true`, prevents the import of *mscorlib.dll*, which defines the entire System namespace. Use this parameter if you want to define or create your own System namespace and objects. For more information, see [-nostdlib (C# compiler options)](/dotnet/csharp/language-reference/compiler-options/nostdlib-compiler-option).|
58
58
|`NoWin32Manifest`|Optional `Boolean` parameter.<br /><br /> If `true`, do not include the default Win32 manifest.|
59
59
|`Optimize`|Optional `Boolean` parameter.<br /><br /> If `true`, enables optimizations. If `false`, disables optimizations. For more information, see [-optimize (C# compiler options)](/dotnet/csharp/language-reference/compiler-options/optimize-compiler-option).|
60
60
|`OutputAssembly`|Optional `String` output parameter.<br /><br /> Specifies the name of the output file. For more information, see [-out (C# compiler options)](/dotnet/csharp/language-reference/compiler-options/out-compiler-option).|
61
61
|`OutputRefAssembly`|Optional `String` parameter.<br /><br /> Specifies the name of the output reference assembly file. For more information, see [-refout (C# compiler options)](/dotnet/csharp/language-reference/compiler-options/refout-compiler-option).|
62
-
|`PdbFile`|Optional `String` parameter.<br /><br /> Specifies the debug information file name. The default name is the output file name with a .pdb extension.|
62
+
|`PdbFile`|Optional `String` parameter.<br /><br /> Specifies the debug information file name. The default name is the output file name with a *.pdb* extension.|
63
63
|`Platform`|Optional `String` parameter.<br /><br /> Specifies the processor platform to be targeted by the output file. This parameter can have a value of `x86`, `x64`, or `anycpu`. Default is `anycpu`. For more information, see [-platform (C# compiler options)](/dotnet/csharp/language-reference/compiler-options/platform-compiler-option).|
64
64
|`References`|Optional <xref:Microsoft.Build.Framework.ITaskItem>`[]` parameter.<br /><br /> Causes the task to import public type information from the specified items into the current project. For more information, see [-reference (C# compiler options)](/dotnet/csharp/language-reference/compiler-options/reference-compiler-option).<br /><br /> You can specify a [!INCLUDE[csprcs](../data-tools/includes/csprcs_md.md)] reference alias in an [!INCLUDE[vstecmsbuild](../extensibility/internals/includes/vstecmsbuild_md.md)] file by adding the metadata `Aliases` to the original "Reference" item. For example, to set the alias "LS1" in the following Csc command line:<br /><br /> `CSC /r:LS1=MyCodeLibrary.dll /r:LS2=MyCodeLibrary2.dll *.cs`<br /><br /> you would use:<br /><br /> `<Reference Include="MyCodeLibrary"> <Aliases>LS1</Aliases> </Reference>`|
65
65
|`Resources`|Optional <xref:Microsoft.Build.Framework.ITaskItem>`[]` parameter.<br /><br /> Embeds a [!INCLUDE[dnprdnshort](../code-quality/includes/dnprdnshort_md.md)] resource into the output file.<br /><br /> Items passed into this parameter can have optional metadata entries named `LogicalName` and `Access`. `LogicalName` corresponds to the `identifier` parameter of the `/resource` switch, and `Access` corresponds to `accessibility-modifier` parameter. For more information, see [-resource (C# compiler options)](/dotnet/csharp/language-reference/compiler-options/resource-compiler-option).|
|`WarningLevel`|Optional `Int32` parameter.<br /><br /> Specifies the warning level for the compiler to display. For more information, see [-warn (C# compiler options)](/dotnet/csharp/language-reference/compiler-options/warn-compiler-option).|
73
73
|`WarningsAsErrors`|Optional `String` parameter.<br /><br /> Specifies a list of warnings to treat as errors. For more information, see [-warnaserror (C# compiler options)](/dotnet/csharp/language-reference/compiler-options/warnaserror-compiler-option).<br /><br /> This parameter overrides the `TreatWarningsAsErrors` parameter.|
74
74
|`WarningsNotAsErrors`|Optional `String` parameter.<br /><br /> Specifies a list of warnings that are not treated as errors. For more information, see [-warnaserror (C# compiler options)](/dotnet/csharp/language-reference/compiler-options/warnaserror-compiler-option).<br /><br /> This parameter is only useful if the `TreatWarningsAsErrors` parameter is set to `true`.|
75
-
|`Win32Icon`|Optional `String` parameter.<br /><br /> Inserts an .ico file in the assembly, which gives the output file the desired appearance in File Explorer. For more information, see [-win32icon (C# compiler options)](/dotnet/csharp/language-reference/compiler-options/win32icon-compiler-option).|
75
+
|`Win32Icon`|Optional `String` parameter.<br /><br /> Inserts an *.ico* file in the assembly, which gives the output file the desired appearance in **File Explorer**. For more information, see [-win32icon (C# compiler options)](/dotnet/csharp/language-reference/compiler-options/win32icon-compiler-option).|
76
76
|`Win32Manifest`|Optional `String` parameter.<br /><br /> Specifies the Win32 manifest to be included.|
77
-
|`Win32Resource`|Optional `String` parameter.<br /><br /> Inserts a Win32 resource (.res) file in the output file. For more information, see [-win32res (C# compiler options)](/dotnet/csharp/language-reference/compiler-options/win32res-compiler-option).|
77
+
|`Win32Resource`|Optional `String` parameter.<br /><br /> Inserts a Win32 resource (*.res*) file in the output file. For more information, see [-win32res (C# compiler options)](/dotnet/csharp/language-reference/compiler-options/win32res-compiler-option).|
78
78
79
79
## Remarks
80
80
In addition to the parameters listed above, this task inherits parameters from the `Microsoft.Build.Tasks.ManagedCompiler` class, which inherits from the <xref:Microsoft.Build.Tasks.ToolTaskExtension> class, which itself inherits from the <xref:Microsoft.Build.Utilities.ToolTask> class. For a list of these additional parameters and their descriptions, see [ToolTaskExtension base class](../msbuild/tooltaskextension-base-class.md).
Copy file name to clipboardExpand all lines: docs/msbuild/formaturl-task.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ Converts a URL to a correct URL format.
31
31
|`OutputUrl`|Optional `String` output parameter.<br /><br /> Specifies the formatted URL.|
32
32
33
33
## Remarks
34
-
In addition to the 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](../msbuild/taskextension-base-class.md).
34
+
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](../msbuild/taskextension-base-class.md).
Copy file name to clipboardExpand all lines: docs/msbuild/generatedeploymentmanifest-task.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -35,8 +35,8 @@ The following table describes the parameters for the `GenerateDeploymentManifest
35
35
|`CreateDesktopShortcut`|Optional `Boolean` parameter.<br /><br /> If true, an icon is created on the desktop during ClickOnce application installation.|
36
36
|`DeploymentUrl`|Optional `String` parameter.<br /><br /> Specifies the update location for the application. If this parameter is not specified, no update location is defined for the application. However, if the `UpdateEnabled` parameter is `true`, the update location must be specified. The specified value should be a fully qualified URL or UNC path.|
37
37
|`Description`|Optional `String` parameter.<br /><br /> Specifies an optional description for the application.|
38
-
|`DisallowUrlActivation`|Optional `Boolean` parameter.<br /><br /> Specifies whether the application should be run automatically when it is opened through a URL. If this parameter is `true`, the application can only be started from the Start menu. The default value of this parameter is `false`. This input applies only when the `Install` parameter value is `true`.|
39
-
|`EntryPoint`|Optional <xref:Microsoft.Build.Framework.ITaskItem>`[]` parameter.<br /><br /> Indicates the entry point for the generated manifest assembly. For a [!INCLUDE[ndptecclick](../deployment/includes/ndptecclick_md.md)] deployment manifest, this input specifies the [!INCLUDE[ndptecclick](../deployment/includes/ndptecclick_md.md)] application manifest.<br /><br />If the `EntryPoint` task parameter is not specified, the `<customHostSpecified>` tag is inserted as a child of the `<entryPoint>` tag, for example:<br /><br /> `<entryPoint xmlns="urn:schemas-`<br /><br /> `microsoft-com:asm.v2">`<br /><br /> `<co.v1:customHostSpecified />`<br /><br /> `</entryPoint>`<br /><br /> You can add DLL dependencies to the application manifest by using the following steps:<br /><br /> 1. Resolve the assembly references with a call to <xref:Microsoft.Build.Tasks.ResolveAssemblyReference>.<br />2. Pass the output of the previous task and the assembly itself to <xref:Microsoft.Build.Tasks.ResolveManifestFiles>.<br />3. Pass the dependencies by using the `Dependencies` parameter to <xref:Microsoft.Build.Tasks.GenerateApplicationManifest>.|
38
+
|`DisallowUrlActivation`|Optional `Boolean` parameter.<br /><br /> Specifies whether the application should be run automatically when it is opened through a URL. If this parameter is `true`, the application can only be started from the **Start** menu. The default value of this parameter is `false`. This input applies only when the `Install` parameter value is `true`.|
39
+
|`EntryPoint`|Optional <xref:Microsoft.Build.Framework.ITaskItem>`[]` parameter.<br /><br /> Indicates the entry point for the generated manifest assembly. For a [!INCLUDE[ndptecclick](../deployment/includes/ndptecclick_md.md)] deployment manifest, this input specifies the [!INCLUDE[ndptecclick](../deployment/includes/ndptecclick_md.md)] application manifest.<br /><br />If the `EntryPoint` task parameter is not specified, the `<customHostSpecified>` tag is inserted as a child of the `<entryPoint>` tag, for example:<br /><br /> `<entryPoint xmlns="urn:schemas-microsoft-com:asm.v2">`<br /><br /> `<co.v1:customHostSpecified />`<br /><br /> `</entryPoint>`<br /><br /> You can add DLL dependencies to the application manifest by using the following steps:<br /><br /> 1. Resolve the assembly references with a call to <xref:Microsoft.Build.Tasks.ResolveAssemblyReference>.<br />2. Pass the output of the previous task and the assembly itself to <xref:Microsoft.Build.Tasks.ResolveManifestFiles>.<br />3. Pass the dependencies by using the `Dependencies` parameter to <xref:Microsoft.Build.Tasks.GenerateApplicationManifest>.|
40
40
|`ErrorReportUrl`|Optional <xref:System.String?displayProperty=fullName> parameter.<br /><br /> Specifies the URL of the web page that is displayed in dialog boxes during ClickOnce installations.|
41
41
|`InputManifest`|Optional <xref:Microsoft.Build.Framework.ITaskItem> parameter.<br /><br /> Indicates an input XML document to serve as a base for the manifest generator. This enables structured data, such as custom manifest definitions, to be reflected in the output manifest. The root element in the XML document must be an assembly node in the asmv1 namespace.|
42
42
|`Install`|Optional `Boolean` parameter.<br /><br /> Specifies whether the application is an installed application or an online-only application. If this parameter is `true`, the application will be installed on the user's **Start** menu, and can be removed by using the **Add or Remove Programs** dialog box. If this parameter is `false`, the application is intended for online use from a web page. The default value of this parameter is `true`.|
0 commit comments