Skip to content

Commit

Permalink
Fix a typo in a variablename
Browse files Browse the repository at this point in the history
Thanks @nguerrera
  • Loading branch information
swaroop-sridhar committed Apr 19, 2019
1 parent 25c2b42 commit 4bb3c69
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Tasks/Microsoft.NET.Build.Tasks/GenerateBundle.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ public class GenerateBundle : TaskBase
[Required]
public string OutputDir { get; set; }
[Required]
public bool ShowDisgnosticOutput { get; set; }
public bool ShowDiagnosticOutput { get; set; }

protected override void ExecuteCore()
{
var bundler = new Bundler(AppHostName, OutputDir, IncludeSymbols, ShowDisgnosticOutput);
var bundler = new Bundler(AppHostName, OutputDir, IncludeSymbols, ShowDiagnosticOutput);
var fileSpec = new List<FileSpec>(FilesToBundle.Length);

foreach (var item in FilesToBundle)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -776,7 +776,7 @@ Copyright (c) .NET Foundation. All rights reserved.
AppHostName="$(AssemblyName)$(_NativeExecutableExtension)"
IncludeSymbols="$(IncludeSymbolsInSingleFile)"
OutputDir="$(PublishDir)"
ShowDisgnosticOutput="false"/>
ShowDiagnosticOutput="false"/>

</Target>

Expand Down

0 comments on commit 4bb3c69

Please sign in to comment.