Skip to content

Commit

Permalink
ci: Configure versioning per package (#350)
Browse files Browse the repository at this point in the history
  • Loading branch information
skarllot authored Oct 19, 2024
1 parent 1fe5f14 commit ef71ca5
Show file tree
Hide file tree
Showing 6 changed files with 56 additions and 1 deletion.
2 changes: 1 addition & 1 deletion version.json → src/Expressions.Database/version.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/main/src/NerdBank.GitVersioning/version.schema.json",
"version": "2.3",
"pathFilters": ["src"],
"pathFilters": ["."],
"publicReleaseRefSpec": [
"^refs/tags/v\\\\d+\\\\.\\\\d+"
],
Expand Down
11 changes: 11 additions & 0 deletions src/Expressions.EntityFrameworkCore/version.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/main/src/NerdBank.GitVersioning/version.schema.json",
"version": "2.3",
"pathFilters": [".", "../Expressions", "../Expressions.Reading", "../Expressions.Database", "../Expressions.Writing"],
"publicReleaseRefSpec": [
"^refs/tags/v\\\\d+\\\\.\\\\d+"
],
"nugetPackageVersion": {
"semVer": 2
}
}
11 changes: 11 additions & 0 deletions src/Expressions.Marten/version.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/main/src/NerdBank.GitVersioning/version.schema.json",
"version": "2.3",
"pathFilters": [".", "../Expressions", "../Expressions.Reading", "../Expressions.Database", "../Expressions.Writing"],
"publicReleaseRefSpec": [
"^refs/tags/v\\\\d+\\\\.\\\\d+"
],
"nugetPackageVersion": {
"semVer": 2
}
}
11 changes: 11 additions & 0 deletions src/Expressions.Reading/version.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/main/src/NerdBank.GitVersioning/version.schema.json",
"version": "2.3",
"pathFilters": [".", "../Expressions"],
"publicReleaseRefSpec": [
"^refs/tags/v\\\\d+\\\\.\\\\d+"
],
"nugetPackageVersion": {
"semVer": 2
}
}
11 changes: 11 additions & 0 deletions src/Expressions.Writing/version.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/main/src/NerdBank.GitVersioning/version.schema.json",
"version": "2.3",
"pathFilters": [".", "../Expressions", "../Expressions.Reading"],
"publicReleaseRefSpec": [
"^refs/tags/v\\\\d+\\\\.\\\\d+"
],
"nugetPackageVersion": {
"semVer": 2
}
}
11 changes: 11 additions & 0 deletions src/Expressions/version.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/main/src/NerdBank.GitVersioning/version.schema.json",
"version": "2.3",
"pathFilters": ["."],
"publicReleaseRefSpec": [
"^refs/tags/v\\\\d+\\\\.\\\\d+"
],
"nugetPackageVersion": {
"semVer": 2
}
}

0 comments on commit ef71ca5

Please sign in to comment.