From 1b405e6efb0168877a465cc06caad5464ff6527e Mon Sep 17 00:00:00 2001 From: Dmitrii Korolev Date: Sat, 3 Aug 2024 14:01:51 +0200 Subject: [PATCH] use sln --- .github/workflows/dotnet.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index dc4e1ca..de5cecd 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -30,16 +30,16 @@ jobs: setAllVars: true - name: Restore dependencies - run: dotnet restore Build.csproj + run: dotnet restore Dapper.AOT.sln - name: Purge run: del src/Dapper.*/bin/Release/Dapper.*.nupkg - name: Build - run: dotnet build Build.csproj --no-restore -c Release + run: dotnet build Dapper.AOT.sln --no-restore -c Release - name: Test - run: dotnet test Build.csproj --no-build --verbosity normal -c Release -f net6.0 --filter FullyQualifiedName!~Integration + run: dotnet test Dapper.AOT.sln --no-build --verbosity normal -c Release -f net6.0 --filter FullyQualifiedName!~Integration - name: Integration Tests run: dotnet test test/Dapper.AOT.Test.Integration/Dapper.AOT.Test.Integration.csproj --verbosity normal -c Release