Skip to content

Commit 2a3912e

Browse files
Ivan KamkinIvan Kamkin
authored andcommitted
Move builds in one step
1 parent 2e7a6aa commit 2a3912e

1 file changed

Lines changed: 4 additions & 11 deletions

File tree

.github/workflows/net-framework.yml

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -34,17 +34,10 @@ jobs:
3434
- name: Setup VSTest
3535
uses: darenm/Setup-VSTest@v1.2
3636

37-
- name: Build main project
38-
run: msbuild .\src\Aspose.BarCode.Cloud.Sdk.csproj `
39-
-restore `
40-
-p:Configuration=Release `
41-
-p:TargetFramework=netstandard2.0
42-
43-
- name: Build test project for ${{ matrix.framework }}
44-
run: msbuild .\Tests\Aspose.BarCode.Cloud.Sdk.Tests.csproj `
45-
-restore `
46-
-p:Configuration=Release `
47-
-p:TargetFramework=${{ matrix.framework }}
37+
- name: Build projects
38+
run: |
39+
msbuild .\src\Aspose.BarCode.Cloud.Sdk.csproj -restore -p:Configuration=Release -p:TargetFramework=netstandard2.0
40+
msbuild .\Tests\Aspose.BarCode.Cloud.Sdk.Tests.csproj -restore -p:Configuration=Release -p:TargetFramework=${{ matrix.framework }}
4841
4942
5043
- name: Test with VSTest

0 commit comments

Comments
 (0)