Skip to content

Commit f580f82

Browse files
authored
refactor: move solution file to src/ directory (#26)
* 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. * fix: update workflow to reference new solution path
1 parent 061c856 commit f580f82

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
dotnet-version: '8.0.x'
2121

2222
- name: Restore dependencies
23-
run: dotnet restore
23+
run: dotnet restore src/CodingWithCalvin.Otel4Vsix.slnx
2424

2525
- name: Build
26-
run: dotnet build --configuration Release --no-restore
26+
run: dotnet build src/CodingWithCalvin.Otel4Vsix.slnx --configuration Release --no-restore
2727

2828
- name: Upload build artifacts
2929
uses: actions/upload-artifact@v4

CodingWithCalvin.Otel4Vsix.slnx

Lines changed: 0 additions & 8 deletions
This file was deleted.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<Solution>
2+
<Folder Name="/src/">
3+
<Project Path="CodingWithCalvin.Otel4Vsix/CodingWithCalvin.Otel4Vsix.csproj" />
4+
</Folder>
5+
<Folder Name="/tests/">
6+
<Project Path="../tests/CodingWithCalvin.Otel4Vsix.Tests/CodingWithCalvin.Otel4Vsix.Tests.csproj" />
7+
</Folder>
8+
</Solution>

0 commit comments

Comments
 (0)