Skip to content

Commit bc1cd6a

Browse files
committed
sln
1 parent 4c1239e commit bc1cd6a

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/dotnet.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ jobs:
2525
dotnet-version: 9.0.x
2626

2727
- name: Restore dependencies
28-
run: dotnet restore ManagedCode.Storage.slnx
28+
run: dotnet restore
2929

3030
- name: Build
31-
run: dotnet build ManagedCode.Storage.slnx --no-restore
31+
run: dotnet build --no-restore
3232

3333
- name: Test
34-
run: dotnet test ManagedCode.Storage.slnx --no-build /p:CollectCoverage=true /p:CoverletOutput=coverage /p:CoverletOutputFormat=opencover
34+
run: dotnet test --no-build /p:CollectCoverage=true /p:CoverletOutput=coverage /p:CoverletOutputFormat=opencover
3535

3636
- name: Copy coverage files
3737
run: |

.github/workflows/nuget.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ jobs:
2020
dotnet-version: '9.0.x'
2121

2222
- name: Restore dependencies
23-
run: dotnet restore ManagedCode.Storage.slnx
23+
run: dotnet restore
2424

2525
- name: Build
26-
run: dotnet build ManagedCode.Storage.slnx --configuration Release --no-restore
26+
run: dotnet build --configuration Release --no-restore
2727

2828
- name: Test
29-
run: dotnet test ManagedCode.Storage.slnx --configuration Release --no-build
29+
run: dotnet test --configuration Release --no-build
3030

3131
- name: NDepend
3232
uses: ndepend/ndepend-action@v1
@@ -40,7 +40,7 @@ jobs:
4040

4141

4242
- name: Pack
43-
run: dotnet pack ManagedCode.Storage.slnx --configuration Release --no-build -p:IncludeSymbols=false -p:SymbolPackageFormat=snupkg -o "packages"
43+
run: dotnet pack --configuration Release --no-build -p:IncludeSymbols=false -p:SymbolPackageFormat=snupkg -o "packages"
4444

4545
- name: Push
4646
run: dotnet nuget push "packages/*.nupkg" --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate

0 commit comments

Comments
 (0)