From 3de08109fbbc6be5f8fe0ddb603c910be2093fee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Montiel=20Cardona?= Date: Sat, 6 Jun 2026 01:29:30 -0600 Subject: [PATCH] fix(build): set MinVerTagPrefix to v so version tags are recognized MinVer defaults to an empty tag prefix, so it looked for tags like `1.0.0-rc.1` and ignored the actual `v1.0.0-rc.1` tag, falling back to 0.0.0-preview.{height} (that's why the first publish shipped as 0.0.0-preview.161). Setting the prefix to `v` makes MinVer derive the package version from the v-prefixed release tags. Co-Authored-By: Claude Opus 4.8 --- Directory.Build.props | 1 + 1 file changed, 1 insertion(+) diff --git a/Directory.Build.props b/Directory.Build.props index aa556ff..9e83fc4 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -12,6 +12,7 @@ true true + v minimal preview