From 269912da918033073b72222f99f69a2a312f331c Mon Sep 17 00:00:00 2001 From: Chris Pietschmann Date: Thu, 6 Feb 2025 14:53:54 -0500 Subject: [PATCH 1/7] Update build-release.yml --- .github/workflows/build-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 4571ee6..baf5a2f 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -23,7 +23,7 @@ jobs: dotnet-version: '6.0.x' # Adjust the version as needed - name: Restore dependencies - run: dotnet restore src + run: dotnet restore - name: Run tests run: dotnet test --no-build --verbosity normal From 626714768c22b53d3c8cf11354df13e983be21e2 Mon Sep 17 00:00:00 2001 From: Chris Pietschmann Date: Thu, 6 Feb 2025 14:54:25 -0500 Subject: [PATCH 2/7] Update build-release.yml --- .github/workflows/build-release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index baf5a2f..15931fb 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -4,6 +4,9 @@ on: push: branches: - main + pull_request: + branches: + - main workflow_dispatch: jobs: From 20438bd0c93c0ace3744c0f3112400aa69c5dd6e Mon Sep 17 00:00:00 2001 From: Chris Pietschmann Date: Thu, 6 Feb 2025 14:55:13 -0500 Subject: [PATCH 3/7] Update dotnet-tests.yml --- .github/workflows/dotnet-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet-tests.yml b/.github/workflows/dotnet-tests.yml index 02ade40..764de95 100644 --- a/.github/workflows/dotnet-tests.yml +++ b/.github/workflows/dotnet-tests.yml @@ -1,4 +1,4 @@ -name: .NET Core +name: .NET Core Tests on: pull_request: From 09a4ad5ab44633c3155ab9cd963531073c95b3eb Mon Sep 17 00:00:00 2001 From: Chris Pietschmann Date: Thu, 6 Feb 2025 14:57:06 -0500 Subject: [PATCH 4/7] Update build-release.yml --- .github/workflows/build-release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 15931fb..f1871fa 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -28,12 +28,12 @@ jobs: - name: Restore dependencies run: dotnet restore - - name: Run tests - run: dotnet test --no-build --verbosity normal - - name: Build run: dotnet build --configuration Release --no-restore + - name: Run tests + run: dotnet test --no-build --verbosity normal + - name: Publish run: dotnet publish --configuration Release --output ./publish --no-build From 03f07f90cf8c74aa34a2fd245a543f9850267cdf Mon Sep 17 00:00:00 2001 From: Chris Pietschmann Date: Thu, 6 Feb 2025 14:58:06 -0500 Subject: [PATCH 5/7] Update build-release.yml --- .github/workflows/build-release.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index f1871fa..646cb23 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -30,9 +30,6 @@ jobs: - name: Build run: dotnet build --configuration Release --no-restore - - - name: Run tests - run: dotnet test --no-build --verbosity normal - name: Publish run: dotnet publish --configuration Release --output ./publish --no-build From 320346d90f0992cdf9fcfcdea36091b91043e1ac Mon Sep 17 00:00:00 2001 From: Chris Pietschmann Date: Thu, 6 Feb 2025 15:03:56 -0500 Subject: [PATCH 6/7] update to .NET 8 --- .github/workflows/build-release.yml | 2 +- .github/workflows/dotnet-tests.yml | 2 +- src/Build5Nines.SharpVector/Build5Nines.SharpVector.csproj | 2 +- src/ConsoleTest/ConsoleTest.csproj | 2 +- src/SharpVectorTest/SharpVectorTest.csproj | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index 646cb23..76cc3d9 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -23,7 +23,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v2 with: - dotnet-version: '6.0.x' # Adjust the version as needed + dotnet-version: '8.0.x' # Adjust the version as needed - name: Restore dependencies run: dotnet restore diff --git a/.github/workflows/dotnet-tests.yml b/.github/workflows/dotnet-tests.yml index 764de95..7f283aa 100644 --- a/.github/workflows/dotnet-tests.yml +++ b/.github/workflows/dotnet-tests.yml @@ -20,7 +20,7 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v2 with: - dotnet-version: '6.0.x' # Adjust the version as needed + dotnet-version: '8.0.x' # Adjust the version as needed - name: Restore dependencies run: dotnet restore diff --git a/src/Build5Nines.SharpVector/Build5Nines.SharpVector.csproj b/src/Build5Nines.SharpVector/Build5Nines.SharpVector.csproj index 700c182..dc58bea 100644 --- a/src/Build5Nines.SharpVector/Build5Nines.SharpVector.csproj +++ b/src/Build5Nines.SharpVector/Build5Nines.SharpVector.csproj @@ -1,7 +1,7 @@  - net6.0 + net8.0 enable enable true diff --git a/src/ConsoleTest/ConsoleTest.csproj b/src/ConsoleTest/ConsoleTest.csproj index ab9aadf..9c2c0e1 100644 --- a/src/ConsoleTest/ConsoleTest.csproj +++ b/src/ConsoleTest/ConsoleTest.csproj @@ -6,7 +6,7 @@ Exe - net6.0 + net8.0 enable enable diff --git a/src/SharpVectorTest/SharpVectorTest.csproj b/src/SharpVectorTest/SharpVectorTest.csproj index edaa66b..3bd5be6 100644 --- a/src/SharpVectorTest/SharpVectorTest.csproj +++ b/src/SharpVectorTest/SharpVectorTest.csproj @@ -1,7 +1,7 @@ - net6.0 + net8.0 enable enable From 6dd5ae4be93cfa0b2cb612b683dd1bbe1d7f73a7 Mon Sep 17 00:00:00 2001 From: Chris Pietschmann Date: Thu, 6 Feb 2025 15:08:09 -0500 Subject: [PATCH 7/7] update nuget packages --- .../Build5Nines.SharpVector.csproj | 4 ++-- src/SharpVectorTest/SharpVectorTest.csproj | 11 +++++++---- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/src/Build5Nines.SharpVector/Build5Nines.SharpVector.csproj b/src/Build5Nines.SharpVector/Build5Nines.SharpVector.csproj index dc58bea..f8a9efa 100644 --- a/src/Build5Nines.SharpVector/Build5Nines.SharpVector.csproj +++ b/src/Build5Nines.SharpVector/Build5Nines.SharpVector.csproj @@ -9,9 +9,9 @@ Build5Nines.SharpVector https://github.com/Build5Nines/SharpVector https://github.com/Build5Nines/SharpVector - 1.0.0 + 1.0.1 Lightweight In-memory Vector Database to embed in any .NET Applications - Copyright (c) 2024 Build5Nines LLC + Copyright (c) 2025 Build5Nines LLC README.md https://github.com/Build5Nines/SharpVector/blob/main/LICENSE Chris Pietschmann diff --git a/src/SharpVectorTest/SharpVectorTest.csproj b/src/SharpVectorTest/SharpVectorTest.csproj index 3bd5be6..1f0d1b2 100644 --- a/src/SharpVectorTest/SharpVectorTest.csproj +++ b/src/SharpVectorTest/SharpVectorTest.csproj @@ -10,10 +10,13 @@ - - - - + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + +