Skip to content

Commit

Permalink
Prerelease - 2025.alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
ricaun committed Apr 30, 2024
1 parent 2088b0e commit 22a52ae
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
10 changes: 10 additions & 0 deletions Build/.nuke/build.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,12 @@
"type": "boolean",
"description": "Shows the execution plan (HTML)"
},
"PreReleaseFilter": {
"type": "array",
"items": {
"type": "string"
}
},
"Profile": {
"type": "array",
"description": "Defines the profiles to load",
Expand Down Expand Up @@ -99,8 +105,10 @@
"Build",
"Clean",
"Compile",
"GitPreRelease",
"GitRelease",
"Pack",
"PrePack",
"Release",
"Sign"
]
Expand All @@ -119,8 +127,10 @@
"Build",
"Clean",
"Compile",
"GitPreRelease",
"GitRelease",
"Pack",
"PrePack",
"Release",
"Sign"
]
Expand Down
2 changes: 1 addition & 1 deletion Build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using ricaun.Nuke;
using ricaun.Nuke.Components;

class Build : NukeBuild, IPublishPack
class Build : NukeBuild, IPublishPack, IPrePack
{
public static int Main() => Execute<Build>(x => x.From<IPublishPack>().Build);
}
4 changes: 4 additions & 0 deletions ricaun.Revit.CefSharp/ricaun.Revit.CefSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,10 @@
<ProjectGuid>{3AF11FA2-A8BB-4609-AD20-56DEF2652FAC}</ProjectGuid>
</PropertyGroup>

<PropertyGroup Condition="$(Configuration.Contains('2025'))">
<Version>$(RevitVersion).0.0-alpha</Version>
</PropertyGroup>

<PropertyGroup>
<PackageAssemblyVersion>.$(Version)</PackageAssemblyVersion>
</PropertyGroup>
Expand Down

0 comments on commit 22a52ae

Please sign in to comment.