Skip to content

Commit

Permalink
Merge pull request #22 from ricaun-io/develop
Browse files Browse the repository at this point in the history
Deploy 1.1.1
  • Loading branch information
ricaun authored Feb 23, 2022
2 parents 650e8d4 + 9215b2e commit 594940f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ 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.1.1] / 2022-02-23
- Update ricaun.Nuke

## [1.1.0] / 2022-02-15
- Update Example Add ricaun.Revit.UI
- Update ricaun.Nuke
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@

<PropertyGroup>
<PackageId>RevitAddin.PackageBuilder.Example</PackageId>
<Version>$(RevitVersion).1.0</Version>
<Version>$(RevitVersion).1.1</Version>
<ProjectGuid>{d2797a34-4696-490d-a97a-c17afb5f0225}</ProjectGuid>
</PropertyGroup>

Expand All @@ -95,7 +95,7 @@
<Product>$(PackageId)</Product>
<Company>ricaun</Company>
<Authors>Luiz Henrique Cassettari</Authors>
<Copyright>Copyright © 2021</Copyright>
<Copyright>Copyright © ricaun 2021</Copyright>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,17 @@ public IssRevitBuilder(Project project,
IssConfiguration issConfiguration)
{
this.project = project;
var assembly = project.GetAssemblyGreaterVersion();
string title = assembly.GetTitle();
string appCopyright = assembly.GetCopyright();
string title = project.GetTitle();
string appCopyright = project.GetCopyright();
string appId = project.GetAppId();

string app = $"{title}";
string appPath = $"{project.Name}";
string appVersion = assembly.GetInformationalVersion();
string appVersion = project.GetInformationalVersion();

string bundle = $"{appPath}.bundle";
string appPublisher = assembly.GetCompany();
string appComments = assembly.GetDescription();
string appPublisher = project.GetCompany();
string appComments = project.GetDescription();

string sourceFiles = $@"{bundle}\*";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<PropertyGroup>
<PackageId>ricaun.Nuke.PackageBuilder</PackageId>
<Version>1.1.0</Version>
<Version>1.1.1</Version>
</PropertyGroup>

<PropertyGroup>
Expand Down

0 comments on commit 594940f

Please sign in to comment.