Skip to content

Commit

Permalink
Update FileSystemTasks.CopyDirectoryRecursively to `AbsolutePathExt…
Browse files Browse the repository at this point in the history
…ensions.Copy`.
  • Loading branch information
ricaun committed Nov 20, 2024
1 parent 2031157 commit 07abada
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [1.7.2] / 2024-11-20
### Updated
- Update `ricaun.Nuke` to `1.8.2`
- Update `FileSystemTasks.CopyDirectoryRecursively` to `AbsolutePathExtensions.CopyToDirectory`.
- Update `FileSystemTasks.CopyFileToDirectory` to `AbsolutePathExtensions.CopyToDirectory`.
- Update `FileSystemTasks.CopyDirectoryRecursively` to `AbsolutePathExtensions.Copy`.

## [1.7.1] / 2024-05-13
### Updated
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public void CreatePackageBuilder(Project project, bool releasePackageBuilder = f
if (ProjectVersionFolder)
ContentsDirectory = ContentsDirectory / projectVersion;

AbsolutePathExtensions.CopyToDirectory(InputDirectory, ContentsDirectory);
AbsolutePathExtensions.Copy(InputDirectory, ContentsDirectory);

if (ProjectRemoveTargetFrameworkFolder)
{
Expand Down

0 comments on commit 07abada

Please sign in to comment.