Skip to content

Commit b513f1b

Browse files
committed
Prerelease - alpha
1 parent 27a0d85 commit b513f1b

File tree

4 files changed

+43
-4
lines changed

4 files changed

+43
-4
lines changed

Build/.nuke/build.schema.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,12 @@
5757
"type": "boolean",
5858
"description": "Shows the execution plan (HTML)"
5959
},
60+
"PreReleaseFilter": {
61+
"type": "array",
62+
"items": {
63+
"type": "string"
64+
}
65+
},
6066
"Profile": {
6167
"type": "array",
6268
"description": "Defines the profiles to load",
@@ -92,6 +98,7 @@
9298
"BuildInstall",
9399
"Clean",
94100
"Compile",
101+
"GitPreRelease",
95102
"GitRelease",
96103
"Release",
97104
"Sign"
@@ -112,6 +119,7 @@
112119
"BuildInstall",
113120
"Clean",
114121
"Compile",
122+
"GitPreRelease",
115123
"GitRelease",
116124
"Release",
117125
"Sign"

Build/Build.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
using Nuke.Common;
22
using Nuke.Common.Execution;
33
using ricaun.Nuke;
4+
using ricaun.Nuke.Components;
45

5-
class Build : NukeBuild, IPublish, IBuildInstall
6+
class Build : NukeBuild, IPublish, IGitPreRelease, IBuildInstall
67
{
78
public static int Main() => Execute<Build>(x => x.From<IPublish>().Build);
89
}

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [1.0.1] / 2024-05-15
88
- First Release
9+
### Updated
910
- Update Package References
1011
- Add Build Project with installation
1112
- Update file order and version.
1213
- Update iss `version` with the project version.
13-
- Update iss folder location.
14+
- Update iss folder location option.
1415

1516
## [1.0.0] / 2023-05-22
1617
- First Pre Release

RevitShell/RevitShell.csproj

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,38 @@
77
</PropertyGroup>
88

99
<PropertyGroup>
10-
<Version>1.0.1</Version>
10+
<Version>1.0.1-alpha</Version>
1111
</PropertyGroup>
12-
12+
13+
<!-- Release -->
14+
<PropertyGroup Condition="!$(Configuration.Contains('Debug'))">
15+
<Optimize>true</Optimize>
16+
<OutputPath>bin\Release\</OutputPath>
17+
<DefineConstants></DefineConstants>
18+
<NoWarn>MSB3052</NoWarn>
19+
<DebugType>None</DebugType>
20+
</PropertyGroup>
21+
22+
<!-- Debug -->
23+
<PropertyGroup Condition="$(Configuration.Contains('Debug'))">
24+
<DebugSymbols>true</DebugSymbols>
25+
<OutputPath>bin\Debug\</OutputPath>
26+
<DefineConstants>DEBUG;TRACE</DefineConstants>
27+
<DebugType>Full</DebugType>
28+
</PropertyGroup>
29+
30+
<PropertyGroup>
31+
<Company>ricaun</Company>
32+
<Authors>Luiz Henrique Cassettari</Authors>
33+
<CopyrightYears>$([System.DateTime]::Now.ToString('yyyy'))</CopyrightYears>
34+
</PropertyGroup>
35+
36+
<PropertyGroup>
37+
<Description>Package $(PackageId).</Description>
38+
<Product>$(AssemblyName)</Product>
39+
<Copyright>Copyright © $(CopyrightYears) $(Company)</Copyright>
40+
</PropertyGroup>
41+
1342
<ItemGroup>
1443
<PackageReference Include="SharpShell" Version="*" />
1544
<PackageReference Include="ServerRegistrationManager" Version="*" />

0 commit comments

Comments
 (0)