Skip to content

Commit

Permalink
Fix SignFolder in CreateRevitAddinOnProjectFiles
Browse files Browse the repository at this point in the history
  • Loading branch information
ricaun committed May 13, 2024
1 parent 9e400fa commit c8ff658
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [1.7.1] / 2024-05-13
### Updated
- Update `ricaun.Nuke` to `1.8.1`
### Fixed
- Fix `SignFolder` in `CreateRevitAddinOnProjectFiles`.

## [1.7.0] / 2024-03-27
### Features
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,8 @@ private void CreateRevitAddinOnProjectFiles(Project project, AbsolutePath direct

addInFiles.ForEach(file =>
{
SignFolder(file);
var folder = file.Parent;
SignFolder(folder, $"*{project.Name}*");
new RevitProjectAddInsBuilder(project, file, Application, ApplicationType, VendorId, VendorDescription)
.Build(file);
});
Expand Down

0 comments on commit c8ff658

Please sign in to comment.