Skip to content

修复构建工具没有执行替换 #74

修复构建工具没有执行替换

修复构建工具没有执行替换 #74

Workflow file for this run

name: .NET Build
on: push
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: |
3.1.x
5.0.x
6.0.x
8.0.x
9.0.x
- name: Build with dotnet
run: dotnet build --configuration Release
- name: Test
run: dotnet test --configuration Release