Skip to content

Commit

Permalink
Remove warning in AppendTargetFramework
Browse files Browse the repository at this point in the history
  • Loading branch information
ricaun committed Dec 22, 2023
1 parent a0e9a38 commit 7cd4d61
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [1.6.3] / 2023-12-06
## [1.6.3] / 2023-12-06 - 2023-12-22
### Features
- Add `ProjectRemoveTargetFrameworkFolder` to remove `net` folder in `PackageBuilder`.
- Update `ReleasePackageBuilder` to not create the Inno installation when false.
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<PropertyGroup>
<Version>1.6.3-alpha</Version>
<Version>1.6.3-beta</Version>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public static void RemoveAppendTargetFrameworkDirectory(AbsolutePath contentsDir
if (targetFrameworkDirectory.Parent.ContainsFile("*") == false)
{
Serilog.Log.Information($"CopyDirectoryRecursively: {directoryName} to {targetFrameworkDirectory.Parent.Name}");
Serilog.Log.Warning($"RemoveTargetFrameworkDirectory: {directoryName} move to {targetFrameworkDirectory.Parent.Name}");
Serilog.Log.Information($"RemoveTargetFrameworkDirectory: {directoryName} move to {targetFrameworkDirectory.Parent.Name}");
FileSystemTasks.CopyDirectoryRecursively(targetFrameworkDirectory, targetFrameworkDirectory.Parent, DirectoryExistsPolicy.Merge);
targetFrameworkDirectory.DeleteDirectory();
}
Expand Down

0 comments on commit 7cd4d61

Please sign in to comment.