Skip to content

Bump CoreWCF.NetTcp from 1.4.1 to 1.5.1 #167

Bump CoreWCF.NetTcp from 1.4.1 to 1.5.1

Bump CoreWCF.NetTcp from 1.4.1 to 1.5.1 #167

Workflow file for this run

name: .NET Core
on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Restore Classic dependencies
run: dotnet restore src/MsgPack.Wcf
- name: Build Classic
run: dotnet build src/MsgPack.Wcf -c Release --no-restore
- name: Restore Core dependencies
run: dotnet restore src/MsgPack.CoreWcf
- name: Build Core
run: dotnet build src/MsgPack.CoreWcf -c Release --no-restore
#- name: Test
# run: dotnet test --no-build --verbosity normal