Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,11 @@ on:
branches: [main]
paths:
- 'src/**'
- '*.sln'
- '.github/workflows/ci.yml'
pull_request:
branches: [main]
paths:
- 'src/**'
- '*.sln'
- '.github/workflows/ci.yml'

jobs:
Expand All @@ -33,10 +31,10 @@ jobs:
dotnet-version: '10.0.x'

- name: Restore dependencies
run: dotnet restore CodingWithCalvin.VSToolbox.sln
run: dotnet restore src/CodingWithCalvin.VSToolbox.slnx

- name: Build
run: dotnet build CodingWithCalvin.VSToolbox.sln --configuration ${{ matrix.configuration }} -p:Platform=${{ matrix.platform }} --no-restore
run: dotnet build src/CodingWithCalvin.VSToolbox.slnx --configuration ${{ matrix.configuration }} -p:Platform=${{ matrix.platform }} --no-restore

- name: Test
run: dotnet test CodingWithCalvin.VSToolbox.sln --configuration ${{ matrix.configuration }} -p:Platform=${{ matrix.platform }} --no-build --verbosity normal
run: dotnet test src/CodingWithCalvin.VSToolbox.slnx --configuration ${{ matrix.configuration }} -p:Platform=${{ matrix.platform }} --no-build --verbosity normal
54 changes: 0 additions & 54 deletions CodingWithCalvin.VSToolbox.sln

This file was deleted.

13 changes: 13 additions & 0 deletions src/CodingWithCalvin.VSToolbox.slnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<Solution>
<Configurations>
<Configuration Name="Debug" />
<Configuration Name="Release" />
<Platform Name="Any CPU" />
<Platform Name="x64" />
<Platform Name="x86" />
</Configurations>
<Folder Name="/src/">
<Project Path="CodingWithCalvin.VSToolbox/CodingWithCalvin.VSToolbox.csproj" />
<Project Path="CodingWithCalvin.VSToolbox.Core/CodingWithCalvin.VSToolbox.Core.csproj" />
</Folder>
</Solution>