Skip to content

Commit 6c03024

Browse files
author
Colin Wilmans
committed
Update default VersionSuffix to 1 in project file
The `<VersionSuffix>` property in `FluentDefaults.csproj` was updated to default to `1` when not explicitly set, replacing the previous default of `0`. This change adjusts the versioning strategy to ensure builds use `1` as the suffix unless overridden.
1 parent d653db3 commit 6c03024

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FluentDefaults/FluentDefaults.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<ImplicitUsings>enable</ImplicitUsings>
88
<Nullable>enable</Nullable>
99
<PackageId>FluentDefaults</PackageId>
10-
<VersionSuffix Condition="'$(VersionSuffix)' == ''">0</VersionSuffix>
10+
<VersionSuffix Condition="'$(VersionSuffix)' == ''">1</VersionSuffix>
1111
<Version>1.2.$(VersionSuffix)</Version>
1212
<Authors>Colin Wilmans</Authors>
1313
<PackageDescription>A library for .NET that uses a fluent interface for setting default values, similar to how FluentValidation handles validations.</PackageDescription>

0 commit comments

Comments
 (0)