Skip to content

Commit 854bc43

Browse files
committed
Migrate to slnx, bump version to beta.6, add more showcase projects
1 parent 1ef6a40 commit 854bc43

6 files changed

Lines changed: 84 additions & 578 deletions

File tree

.github/workflows/test-and-publish.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -88,20 +88,20 @@ jobs:
8888
- name: Build on master branch
8989
if: ${{github.ref == 'refs/heads/master'}}
9090
run: |
91-
dotnet restore AsmResolver.sln
92-
dotnet build AsmResolver.sln `
91+
dotnet restore AsmResolver.slnx
92+
dotnet build AsmResolver.slnx `
9393
--configuration Release `
9494
--property:CheckEolTargetFramework=false
9595
9696
# For non-master branches (e.g., development or feature branches) we apply a fixup on the version suffix.
9797
- name: Build on non-master branch
9898
if: ${{github.ref != 'refs/heads/master'}}
9999
run: |
100-
dotnet restore AsmResolver.sln `
100+
dotnet restore AsmResolver.slnx `
101101
--property:VersionSuffix=${{needs.get-version.outputs.version_suffix}} `
102102
--property:CheckEolTargetFramework=false
103103
104-
dotnet build AsmResolver.sln `
104+
dotnet build AsmResolver.slnx `
105105
--configuration Release `
106106
--property:VersionSuffix=${{needs.get-version.outputs.version_suffix}} `
107107
--property:CheckEolTargetFramework=false
@@ -198,7 +198,7 @@ jobs:
198198
shell: pwsh
199199
if: "${{ matrix.runner.arch == 'x86' }}"
200200
run: |
201-
& "${{ steps.dotnet-path.outputs.exe-path }}" test AsmResolver.sln `
201+
& "${{ steps.dotnet-path.outputs.exe-path }}" test AsmResolver.slnx `
202202
--arch x86 `
203203
--configuration Release `
204204
--property:VersionSuffix=${{needs.get-version.outputs.version_suffix}} `
@@ -210,7 +210,7 @@ jobs:
210210
shell: pwsh
211211
if: "${{ matrix.runner.arch == 'x64' }}"
212212
run: |
213-
& "${{ steps.dotnet-path.outputs.exe-path }}" test AsmResolver.sln `
213+
& "${{ steps.dotnet-path.outputs.exe-path }}" test AsmResolver.slnx `
214214
--configuration Release `
215215
--property:VersionSuffix=${{needs.get-version.outputs.version_suffix}} `
216216
--property:CheckEolTargetFramework=false `

0 commit comments

Comments
 (0)