From 4d98550267e72e0f19811e79c8b3a0f44cb352bc Mon Sep 17 00:00:00 2001 From: "Calvin A. Allen" Date: Fri, 2 Jan 2026 16:08:22 -0500 Subject: [PATCH 1/2] refactor: move solution file to src/ directory Moves .slnx from root to src/ for consistency with other repos. Updates project paths to be relative to new location. --- CodingWithCalvin.Otel4Vsix.slnx | 8 -------- src/CodingWithCalvin.Otel4Vsix.slnx | 8 ++++++++ 2 files changed, 8 insertions(+), 8 deletions(-) delete mode 100644 CodingWithCalvin.Otel4Vsix.slnx create mode 100644 src/CodingWithCalvin.Otel4Vsix.slnx diff --git a/CodingWithCalvin.Otel4Vsix.slnx b/CodingWithCalvin.Otel4Vsix.slnx deleted file mode 100644 index e7e5385..0000000 --- a/CodingWithCalvin.Otel4Vsix.slnx +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/CodingWithCalvin.Otel4Vsix.slnx b/src/CodingWithCalvin.Otel4Vsix.slnx new file mode 100644 index 0000000..ab3c5a0 --- /dev/null +++ b/src/CodingWithCalvin.Otel4Vsix.slnx @@ -0,0 +1,8 @@ + + + + + + + + From 7faf33d49752b91a9955986f063e48c0d6273137 Mon Sep 17 00:00:00 2001 From: "Calvin A. Allen" Date: Fri, 2 Jan 2026 16:17:31 -0500 Subject: [PATCH 2/2] fix: update workflow to reference new solution path --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e17d221..740a389 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -20,10 +20,10 @@ jobs: dotnet-version: '8.0.x' - name: Restore dependencies - run: dotnet restore + run: dotnet restore src/CodingWithCalvin.Otel4Vsix.slnx - name: Build - run: dotnet build --configuration Release --no-restore + run: dotnet build src/CodingWithCalvin.Otel4Vsix.slnx --configuration Release --no-restore - name: Upload build artifacts uses: actions/upload-artifact@v4