Skip to content

Commit d43aec9

Browse files
committed
fix release version prefix
1 parent 304b75b commit d43aec9

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

AGENTS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,7 @@ For this app:
213213
- desktop app build or publish jobs must use native runners for their target OS: macOS artifacts on macOS runners, Windows artifacts on Windows runners, and Linux artifacts on Linux runners
214214
- desktop release assets must be native installable or directly executable outputs for each OS, not archives of raw publish folders; package the real `.exe`, `.snap`, `.dmg`, `.pkg`, `Setup.exe`, or equivalent runnable installer/app artifact instead of zipping intermediate publish directories
215215
- desktop release versions must use the `ApplicationDisplayVersion` value in `DotPilot/DotPilot.csproj` as a manually maintained two-segment prefix, with CI appending the final segment from the build number (for example `0.0.<build-number>`)
216+
- until the user explicitly changes the versioning policy, the manually maintained `ApplicationDisplayVersion` prefix for desktop releases must stay `0.0`, not `1.0`
216217
- the release workflow must not take ownership of the first two version segments; those remain manually edited in source, while CI supplies only the last numeric segment and matching release tag/application version values
217218
- for CI and release automation in this solution, prefer existing `dotnet` and `MSBuild` capabilities plus small workflow-native steps over Python or adding a separate helper project for simple versioning and release-note tasks
218219
- prefer MIT-licensed GitHub and NuGet dependencies when they materially accelerate delivery and align with the current architecture

DotPilot/DotPilot.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<!-- App Identifier -->
1313
<ApplicationId>com.companyname.DotPilot</ApplicationId>
1414
<!-- Versions -->
15-
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
15+
<ApplicationDisplayVersion>0.0</ApplicationDisplayVersion>
1616
<ApplicationVersion>1</ApplicationVersion>
1717
<!-- Package Publisher -->
1818
<ApplicationPublisher>O=DotPilot</ApplicationPublisher>

0 commit comments

Comments
 (0)