Skip to content

Commit b881d22

Browse files
authored
Remove extra comma in MSBuild AspNetCompiler task
1 parent 8668b61 commit b881d22

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/msbuild/aspnetcompiler-task.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ The `AspNetCompiler` task wraps *aspnet_compiler.exe*, a utility to precompile A
2323

2424
## Task parameters
2525

26-
The following table describes the parameters of the `AspNetCompiler` task.
26+
The following table describes the parameters of the `AspNetCompiler` task:
2727

2828
|Parameter|Description|
2929
|---------------|-----------------|
30-
|`AllowPartiallyTrustedCallers`|Optional `Boolean` parameter.<br /><br /> If this parameter is `true`,, the strong-name assembly will allow partially trusted callers.|
30+
|`AllowPartiallyTrustedCallers`|Optional `Boolean` parameter.<br /><br /> If this parameter is `true`, the strong-name assembly will allow partially trusted callers.|
3131
|`Clean`|Optional `Boolean` parameter<br /><br /> If this parameter is `true`, the precompiled application will be built clean. Any previously compiled components will be recompiled. The default value is `false`. This parameter corresponds to the **-c** switch on *aspnet_compiler.exe*.|
3232
|`Debug`|Optional `Boolean` parameter.<br /><br /> If this parameter is `true`, debug information (.PDB file) is emitted during compilation. The default value is `false`. This parameter corresponds to the **-d** switch on *aspnet_compiler.exe*.|
3333
|`DelaySign`|Optional `Boolean` parameter.<br /><br /> If this parameter is `true`, the assembly is not fully signed when created.|
@@ -46,7 +46,7 @@ The following table describes the parameters of the `AspNetCompiler` task.
4646

4747
## Example
4848

49-
The following code example uses the `AspNetCompiler` task to precompile an ASP.NET application.
49+
The following code example uses the `AspNetCompiler` task to precompile an ASP.NET application:
5050

5151
```xml
5252
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

0 commit comments

Comments
 (0)