diff --git a/.github/workflows/build-branches.yml b/.github/workflows/build-branches.yml index 952e1b8aefe..329e9ce0683 100644 --- a/.github/workflows/build-branches.yml +++ b/.github/workflows/build-branches.yml @@ -36,7 +36,7 @@ jobs: - name: Extract API run: | - dotnet run -p .apitool/ \ + dotnet run --project .apitool/ \ -- print --format=json --include-hidden \ -o Artifacts/api.json Artifacts/bin/public/ diff --git a/.github/workflows/build-pull-request.yml b/.github/workflows/build-pull-request.yml index 66de3019145..850aa80a5d6 100644 --- a/.github/workflows/build-pull-request.yml +++ b/.github/workflows/build-pull-request.yml @@ -52,7 +52,7 @@ jobs: - name: Extract API Spec run: | - dotnet run -p .apitool/ \ + dotnet run --project .apitool/ \ -- print --format=json --include-hidden \ -o Artifacts/api.json Artifacts/bin/public/ @@ -100,7 +100,7 @@ jobs: - name: Extract Base API run: | - dotnet run -p .apitool/ \ + dotnet run --project .apitool/ \ -- print --format=json --include-hidden \ -o Artifacts/base-api.json base/Artifacts/bin/public/ diff --git a/.gitignore b/.gitignore index 660fec5856a..353fba3f72a 100644 --- a/.gitignore +++ b/.gitignore @@ -218,3 +218,5 @@ externals/libs/ tools/coverage coverage.json +# vs code temp +.vscode/