Skip to content

Commit

Permalink
Merge pull request #60 from ricaun-io/develop
Browse files Browse the repository at this point in the history
Version 1.7.1
  • Loading branch information
ricaun authored Aug 5, 2024
2 parents f7ed2d0 + 885c235 commit f2bd8e4
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ 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.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
- Support .NET 8.0
Expand Down Expand Up @@ -287,6 +293,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- First Release

[vNext]: ../../compare/1.0.0...HEAD
[1.7.1]: ../../compare/1.7.0...1.7.1
[1.7.0]: ../../compare/1.6.4...1.7.0
[1.6.4]: ../../compare/1.6.3...1.6.4
[1.6.3]: ../../compare/1.6.2...1.6.3
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.7.0</Version>
<Version>1.7.1</Version>
</PropertyGroup>
</Project>
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
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
<PackageReference Include="Tools.InnoSetup" Version="6.2.0" IncludeAssets="All" />
<PackageReference Include="InnoSetup.ScriptBuilder" Version="*" />
<PackageReference Include="Autodesk.PackageBuilder" Version="*" />
<PackageReference Include="ricaun.Nuke" Version="*" />
<PackageReference Include="ricaun.Nuke" Version="*-*" />
</ItemGroup>

<!--
Expand Down

0 comments on commit f2bd8e4

Please sign in to comment.