We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f53db36 commit 0ad097dCopy full SHA for 0ad097d
1 file changed
.github/workflows/net-framework.yml
@@ -34,8 +34,17 @@ jobs:
34
- name: Setup VSTest
35
uses: darenm/Setup-VSTest@v1.2
36
37
- - name: Build the Solution
38
- run: msbuild -restore -p:Configuration=Release -p:TargetFramework=${{ matrix.framework }}
+ - name: Build main project
+ run: msbuild .\src\Aspose.BarCode.Cloud.Sdk.csproj `
39
+ -restore `
40
+ -p:Configuration=Release `
41
+
42
+ - name: Build test project for ${{ matrix.framework }}
43
+ run: msbuild .\Tests\Aspose.BarCode.Cloud.Sdk.Tests.csproj `
44
45
46
+ -p:TargetFramework=${{ matrix.framework }}
47
48
49
- name: Test with VSTest
50
run: |
0 commit comments