Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"rollForward": false
},
"gitversion.tool": {
"version": "5.12.0",
"version": "6.6.0",
"commands": [
"dotnet-gitversion"
],
Expand Down
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>
<!-- Build Tools -->
<ItemGroup>
<GlobalPackageReference Include="GitVersion.MsBuild" Version="5.10.3" />
<GlobalPackageReference Include="GitVersion.MsBuild" Version="6.6.0" />
</ItemGroup>
<!-- Framework-Agnostic Packages -->
<ItemGroup>
Expand Down
24 changes: 12 additions & 12 deletions GitVersion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,50 +4,50 @@ branches:
main:
regex: ^master$|^main$
mode: ContinuousDelivery
tag: ''
label: ''
increment: Patch
prevent-increment-of-merged-branch-version: true
prevent-increment:
of-merged-branch: true
track-merge-target: false
source-branches: [ 'develop', 'release' ]
tracks-release-branches: false
is-release-branch: false
is-mainline: true
pre-release-weight: 55000
develop:
regex: ^dev(elop)?(ment)?$
mode: ContinuousDeployment
tag: alpha
label: alpha
increment: Minor
prevent-increment-of-merged-branch-version: false
prevent-increment:
of-merged-branch: false
track-merge-target: true
source-branches: []
tracks-release-branches: true
is-release-branch: false
is-mainline: false
pre-release-weight: 0
release:
regex: ^releases?[/-]
mode: ContinuousDeployment
tag: preview
label: preview
increment: None
prevent-increment-of-merged-branch-version: true
prevent-increment:
of-merged-branch: true
track-merge-target: false
source-branches: [ 'develop', 'main', 'support', 'release' ]
tracks-release-branches: false
is-release-branch: true
is-mainline: false
pre-release-weight: 30000
support:
regex: ^support[/-]
mode: ContinuousDelivery
tag: ''
label: ''
increment: Patch
prevent-increment-of-merged-branch-version: true
prevent-increment:
of-merged-branch: true
track-merge-target: false
source-branches: [ 'main' ]
tracks-release-branches: false
is-release-branch: false
is-mainline: true
pre-release-weight: 55000
ignore:
sha: []
Expand Down
1 change: 1 addition & 0 deletions cake/Build.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<RunWorkingDirectory>$(MSBuildProjectDirectory)</RunWorkingDirectory>
<GitVersionOutputFile>$(MSBuildProjectDirectory)\obj\gitversion.json</GitVersionOutputFile>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,6 @@
</None>
</ItemGroup>

<ItemGroup>
<PackageVersion Update="GitVersion.MsBuild" Version="6.0.5" />
</ItemGroup>

<ItemGroup>
<PackageReference Update="GitVersion.MsBuild">
Expand Down
Loading