移除 ValueTuple,否则多个使用了此包的库将出现冲突的元组类型 #52
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: .NET Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: | | |
8.0.x | |
- name: Build with dotnet | |
run: dotnet build --configuration release | |
# No need because all tests passed if the solution is successfully built | |
# - name: Test | |
# run: dotnet test --configuration release |