diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 5aeee7442..d9e00a439 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -33,17 +33,8 @@ jobs: # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - # - name: Autobuild - # uses: github/codeql-action/autobuild@v1 - - - name: Setup .NET Core - uses: actions/setup-dotnet@v1 - with: - dotnet-version: 5.0.100-rc.1.20452.10 - - name: Install dependencies - run: dotnet restore - - name: Build - run: dotnet build --configuration Release --no-restore + - name: Autobuild + uses: github/codeql-action/autobuild@v1 # â„šī¸ Command-line programs to run using the OS shell. # 📚 https://git.io/JvXDl diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index b6c5e15db..7daa853af 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -16,10 +16,10 @@ jobs: - name: Setup .NET Core uses: actions/setup-dotnet@v1 with: - dotnet-version: 5.0.100-rc.1.20452.10 + dotnet-version: 5.0.100 - name: Install dependencies run: dotnet restore - name: Build run: dotnet build --configuration Release --no-restore - name: Test - run: dotnet test --no-restore --verbosity normal UnitTests/ + run: dotnet test --no-restore --verbosity normal diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 3c3a7c3a1..1b06f0251 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -13,7 +13,7 @@ jobs: - name: Setup dotnet uses: actions/setup-dotnet@v1 with: - dotnet-version: 5.0.100-rc.1.20452.10 + dotnet-version: 5.0.100 # Publish - name: publish on version change diff --git a/global.json b/global.json new file mode 100644 index 000000000..f1cbdaf83 --- /dev/null +++ b/global.json @@ -0,0 +1,6 @@ +{ + "sdk":{ + "version":"5.0.100", + "rollForward":"latestMajor" + } +}