File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 17
17
with :
18
18
dotnet-version : 9.x
19
19
- name : Build
20
- run : dotnet build ./src/**/*.csproj --configuration Release -- Platform AnyCPU
20
+ run : dotnet build ./src/**/*.csproj --configuration Release /p: Platform AnyCPU
21
21
- name : Upload
22
22
uses : actions/upload-artifact@v4
23
23
with :
37
37
with :
38
38
dotnet-version : 9.x
39
39
- name : Test
40
- run : dotnet test ./tests/**/*Tests.csproj --configuration Release -- Platform AnyCPU --verbosity normal --settings unit-test.runsettings --logger trx --collect:"Code Coverage" --results-directory test-results
40
+ run : dotnet test ./tests/**/*Tests.csproj --configuration Release /p: Platform AnyCPU --verbosity normal --settings unit-test.runsettings --logger trx --collect:"Code Coverage" --results-directory test-results
41
41
- name : Upload
42
42
uses : actions/upload-artifact@v4
43
43
with :
62
62
- name : Display structure of downloaded files
63
63
run : ls -R
64
64
- name : Pack
65
- run : dotnet pack ./src/**/*.csproj --no-build --no-restore --configuration Release -- Platform AnyCPU
65
+ run : dotnet pack ./src/**/*.csproj --no-build --no-restore --configuration Release /p: Platform AnyCPU
66
66
- name : Display structure of after pack
67
67
run : ls -R
68
68
- name : Upload
You can’t perform that action at this time.
0 commit comments