Skip to content

如果目标编译器不满足分析器和源生成器要求,则报告编译错误 #216

如果目标编译器不满足分析器和源生成器要求,则报告编译错误

如果目标编译器不满足分析器和源生成器要求,则报告编译错误 #216

Workflow file for this run

name: .NET Build
on: [push]
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
9.0.x
- name: Build
run: dotnet build -c release
- name: Test Debug
run: dotnet test -c debug
- name: Test Release
run: dotnet test -c release
- name: Pack
run: dotnet pack ./src/DotNetCampus.CommandLine -c release --no-build