From c0928504eb7c133f2984c350f17394645004f483 Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 20 Jul 2023 10:19:43 +0100 Subject: [PATCH] Use global.json file --- .github/workflows/ci.yml | 6 ------ ZendeskApiClient.sln | 1 + global.json | 5 +++++ 3 files changed, 6 insertions(+), 6 deletions(-) create mode 100644 global.json diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 57b57642..84652d86 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,8 +30,6 @@ jobs: - name: Setup .NET SDK uses: actions/setup-dotnet@v3 - with: - dotnet-version: '3.1.x' - name: Setup NuGet cache uses: actions/cache@v3 @@ -67,8 +65,6 @@ jobs: - name: Setup .NET SDK uses: actions/setup-dotnet@v3 - with: - dotnet-version: '3.1.x' - name: Run Integration tests shell: pwsh @@ -89,8 +85,6 @@ jobs: - name: Setup .NET SDK uses: actions/setup-dotnet@v3 - with: - dotnet-version: '3.1.x' - name: Push NuGet packages to NuGet.org run: dotnet nuget push "*.nupkg" --api-key ${{ secrets.NUGET_TOKEN }} --skip-duplicate --source https://api.nuget.org/v3/index.json diff --git a/ZendeskApiClient.sln b/ZendeskApiClient.sln index 83d34d62..21834cc1 100644 --- a/ZendeskApiClient.sln +++ b/ZendeskApiClient.sln @@ -19,6 +19,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution build.cake = build.cake build.ps1 = build.ps1 build.sh = build.sh + global.json = global.json icon.png = icon.png License.md = License.md NuGet.config = NuGet.config diff --git a/global.json b/global.json new file mode 100644 index 00000000..2c800306 --- /dev/null +++ b/global.json @@ -0,0 +1,5 @@ +{ + "sdk": { + "version": "6.0.412" + } +}