Skip to content

Commit

Permalink
Merge pull request cake-build#625 from reicheltp/feature/fix-dnu-sett…
Browse files Browse the repository at this point in the history
…ings

Fixed cake-build#624 (DNU Settings OutputDirectory)
  • Loading branch information
devlead committed Jan 8, 2016
2 parents 5fdbc16 + 7ffecc0 commit d52682c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Cake.Common/Tools/DNU/Build/DNUBuildSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class DNUBuildSettings : ToolSettings
/// <summary>
/// Gets or sets the output directory.
/// </summary>
public FilePath OutputDirectory { get; set; }
public DirectoryPath OutputDirectory { get; set; }

/// <summary>
/// Gets or sets a value indicating whether to not show output such as dependencies in use.
Expand Down
2 changes: 1 addition & 1 deletion src/Cake.Common/Tools/DNU/Pack/DNUPackSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class DNUPackSettings : ToolSettings
/// <summary>
/// Gets or sets the output directory.
/// </summary>
public FilePath OutputDirectory { get; set; }
public DirectoryPath OutputDirectory { get; set; }

/// <summary>
/// Gets or sets a value indicating whether to not show output such as dependencies in use.
Expand Down

0 comments on commit d52682c

Please sign in to comment.