Skip to content

Commit

Permalink
Merge branch 'hotfix/0.17.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
matkoch committed Feb 23, 2019
2 parents 637daee + fc67864 commit a556f42
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [vNext]

## [0.17.1] / 2019-02-23
- Fixed attributes in build tasks

## [0.17.0] / 2019-02-23
- Removed collection-based tasks in `FileSystemTasks`
- Changed `ContinueOnFailure` to `ProceedAfterFailure`
Expand Down Expand Up @@ -308,7 +311,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Added CLT tasks for Git
- Fixed background color in console output

[vNext]: https://github.com/nuke-build/common/compare/0.17.0...HEAD
[vNext]: https://github.com/nuke-build/common/compare/0.17.1...HEAD
[0.17.1]: https://github.com/nuke-build/common/compare/0.17.0...0.17.1
[0.17.0]: https://github.com/nuke-build/common/compare/0.16.0...0.17.0
[0.16.0]: https://github.com/nuke-build/common/compare/0.15.0...0.16.0
[0.15.0]: https://github.com/nuke-build/common/compare/0.14.1...0.15.0
Expand Down
2 changes: 1 addition & 1 deletion source/Nuke.Common/BuildTasks/ExternalFilesTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class ExternalFilesTask : ITask
public IBuildEngine BuildEngine { get; set; }
public ITaskHost HostObject { get; set; }

[Required]
[Microsoft.Build.Framework.Required]
public ITaskItem[] ExternalFiles { get; set; }

public int Timeout { get; set; }
Expand Down
6 changes: 3 additions & 3 deletions source/Nuke.Common/BuildTasks/PackPackageToolsTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ public class PackPackageToolsTask : ITask
public IBuildEngine BuildEngine { get; set; }
public ITaskHost HostObject { get; set; }

[Required]
[Microsoft.Build.Framework.Required]
public string ProjectAssetsFile { get; set; }

[Required]
[Microsoft.Build.Framework.Required]
public string NuGetPackageRoot { get; set; }

[Required]
[Microsoft.Build.Framework.Required]
public string TargetFramework { get; set; }

[Output]
Expand Down

0 comments on commit a556f42

Please sign in to comment.