Skip to content

Commit e1a83a8

Browse files
author
Piotr Stachaczynski
committed
feat: are you winning son?
1 parent 8bef44c commit e1a83a8

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/build-and-publish-inferpage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ jobs:
2727
dotnet-version: '10.0.x'
2828

2929
- name: Restore dependencies
30-
run: dotnet restore src/MaIN.InferPage
30+
run: dotnet restore src/MaIN.InferPage -p:TargetFrameworks=net10.0
3131

3232
- name: Build project
33-
run: dotnet build src/MaIN.InferPage --configuration Release --no-restore
33+
run: dotnet build src/MaIN.InferPage --configuration Release --no-restore -p:TargetFrameworks=net10.0
3434

3535
- name: Publish project
3636
run: dotnet publish src/MaIN.InferPage --framework net10.0 --configuration Release --output ./publish --no-build

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ jobs:
3333
run: dotnet restore
3434

3535
- name: Build solution
36-
run: dotnet build --configuration Release --no-restore
36+
run: dotnet build --configuration Release --no-restore -p:TargetFrameworks=net10.0
3737

3838
- name: Run tests
39-
run: dotnet test --configuration Release --no-build --verbosity normal --filter FullyQualifiedName\!~E2ETests
39+
run: dotnet test --configuration Release --no-build --verbosity normal --filter FullyQualifiedName\!~E2ETests -p:TargetFrameworks=net10.0
4040

4141
- name: Get version from .nupsec file
4242
run: |

0 commit comments

Comments
 (0)