File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 1- # This workflow will build a .NET project
2- # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
3-
41name : .NET
52
63on :
118
129jobs :
1310 build :
14-
1511 runs-on : windows-latest
1612 env :
1713 ProductClientId : ${{ secrets.PRODUCTCLIENTID }}
1814 ProductClientSecret : ${{ secrets.PRODUCTCLIENTSECRET }}
15+
1916 steps :
2017 - uses : actions/checkout@v4
2118
2219 - name : Setup .NET
2320 uses : actions/setup-dotnet@v4
2421 with :
2522 dotnet-version : 8.0.300
23+
2624 - name : Restore dependencies
27- run : dotnet restore
25+ # run: dotnet restore Aspose.Cells.Cloud.SDK/Aspose.Cells.Cloud.SDK.csproj
26+
2827 - name : Build
29- run : dotnet build --no-restore
28+ run : dotnet build --no-restore -p:Configuration=Release
29+
3030 - name : Run Examples
3131 run : |
3232 cd examples
33- dotnet test .\ Example_QuickStart.cs
33+ dotnet test Example_QuickStart.csproj --verbosity normal
You can’t perform that action at this time.
0 commit comments