We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a3912e commit 6bbbf19Copy full SHA for 6bbbf19
1 file changed
.github/workflows/net-framework.yml
@@ -28,17 +28,19 @@ jobs:
28
steps:
29
- uses: actions/checkout@v4
30
31
+ - name: Setup .NET 10 SDK
32
+ uses: actions/setup-dotnet@v4
33
+ with:
34
+ dotnet-version: '10.0.x'
35
+
36
- name: Setup MSBuild
37
uses: microsoft/setup-msbuild@v1.1
38
39
- name: Setup VSTest
40
uses: darenm/Setup-VSTest@v1.2
41
- - name: Build projects
- run: |
- msbuild .\src\Aspose.BarCode.Cloud.Sdk.csproj -restore -p:Configuration=Release -p:TargetFramework=netstandard2.0
- msbuild .\Tests\Aspose.BarCode.Cloud.Sdk.Tests.csproj -restore -p:Configuration=Release -p:TargetFramework=${{ matrix.framework }}
-
42
+ - name: Build the Solution
43
+ run: msbuild -restore -p:Configuration=Release
44
45
- name: Test with VSTest
46
run: |
0 commit comments