From 60d7306d8f5ec4d3241dfc223de77d6bdbbc89f4 Mon Sep 17 00:00:00 2001 From: Sam Baas Date: Tue, 12 Sep 2023 13:46:54 +0200 Subject: [PATCH] Update build-dotnet.yml use specific location for nested csproj --- .github/workflows/build-dotnet.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-dotnet.yml b/.github/workflows/build-dotnet.yml index 25f43e7..3527fbb 100644 --- a/.github/workflows/build-dotnet.yml +++ b/.github/workflows/build-dotnet.yml @@ -21,8 +21,8 @@ jobs: with: dotnet-version: 6.0.x - name: Restore dependencies - run: dotnet restore + run: dotnet restore TileBakeTool/TileBakeTool.csproj - name: Build - run: dotnet build --no-restore + run: dotnet build TileBakeTool/TileBakeTool.csproj --no-restore - name: Test - run: dotnet test --no-build --verbosity normal + run: dotnet test TileBakeTool/TileBakeTool.csproj --no-build --verbosity normal