Compare commits

...

2 Commits

Author SHA1 Message Date
30e2c18b68 🔧 Enables opting out of custom paths via DisableCustomArtifactsPath variable
Necessary to faciliate Deterministic builds
2025-08-16 18:15:29 +03:00
405767587e 🔖 Updates GitVersion to latest configuration values 2025-08-16 17:39:37 +03:00
3 changed files with 14 additions and 9 deletions

View File

@@ -50,7 +50,7 @@
<DefaultItemExcludes>$(DefaultItemExcludes);*.log;*.binlog</DefaultItemExcludes> <DefaultItemExcludes>$(DefaultItemExcludes);*.log;*.binlog</DefaultItemExcludes>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="$(ArtifactsPath) == ''"> <PropertyGroup Condition="$(ArtifactsPath) == '' AND $(DisableCustomArtifactsPath) != 'true'">
<ArtifactsPath>$(MSBuildThisFileDirectory)artifacts</ArtifactsPath> <ArtifactsPath>$(MSBuildThisFileDirectory)artifacts</ArtifactsPath>
</PropertyGroup> </PropertyGroup>

View File

@@ -1,6 +1,6 @@
<Project> <Project>
<ItemGroup Label="Packages"> <ItemGroup Label="Packages">
<PackageVersion Include="GitVersion.MsBuild" Version="6.3.0" /> <PackageVersion Include="GitVersion.MsBuild" Version="6.4.0" />
<PackageVersion Include="Microsoft.AspNetCore.OpenApi" Version="9.0.6" /> <PackageVersion Include="Microsoft.AspNetCore.OpenApi" Version="9.0.6" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.14.1" /> <PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
<PackageVersion Include="NSubstitute.Analyzers.CSharp" Version="1.0.17" /> <PackageVersion Include="NSubstitute.Analyzers.CSharp" Version="1.0.17" />

View File

@@ -1,19 +1,24 @@
workflow: GitFlow/v1 workflow: GitHubFlow/v1
mode: ContinuousDelivery mode: ContinuousDelivery
tag-prefix: '[vV]?'
ignore:
paths:
- ^(?!src\/|Directory\.Packages\.props|GitVersion.yml).*
branches: branches:
main:
mode: ContinuousDelivery
label: ''
develop: develop:
label: alpha label: 'beta'
regex: '^(dev|develop|development)$'
source-branches: source-branches:
- main - main
- feature
feature: feature:
mode: ContinuousDelivery mode: ContinuousDelivery
label: '{BranchName}'
source-branches: source-branches:
- develop - develop
hotfix:
regex: ^hotfix?[\/-](?<BranchName>.+)
mode: ContinuousDelivery
release:
mode: ContinuousDelivery
prevent-increment: prevent-increment:
of-merged-branch: true of-merged-branch: true