diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 95eed23..9200b74 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -7,7 +7,6 @@ env: DOTNET_VERSION: 6.0.x NUGET_VERSION: 5.x BUILD_CONFIG: Release - BUILD_TARGET: netstandard2.0 BUILD_PLATFORM: Any CPU PACK_PARAMETERS: '' NUGET_OUTPUT_FOLDER: nupkgs @@ -105,7 +104,7 @@ jobs: run: dotnet restore - name: Build - run: dotnet build --no-restore --configuration ${{ env.BUILD_CONFIG }} --framework ${{ env.BUILD_TARGET }} /p:"Platform=${{ env.BUILD_PLATFORM }}" /p:"Version=${{ needs.setup.outputs.product_version }}" /p:"AssemblyVersion=${{ needs.setup.outputs.assembly_version }}" + run: dotnet build --no-restore --configuration ${{ env.BUILD_CONFIG }} /p:"Platform=${{ env.BUILD_PLATFORM }}" /p:"Version=${{ needs.setup.outputs.product_version }}" /p:"AssemblyVersion=${{ needs.setup.outputs.assembly_version }}" - name: Test run: dotnet test --no-restore --no-build --configuration ${{ env.BUILD_CONFIG }} --verbosity normal --collect:"XPlat Code Coverage"