feat(notifications): 通知数据应交由具体实现者来处理数据 #179
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: "Build" | |
on: | |
push: | |
paths: | |
- "**.cs" | |
- "**.csproj" | |
env: | |
DOTNET_VERSION: "8.0.200" | |
jobs: | |
build: | |
name: "Build" | |
runs-on: "windows-latest" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: ${{ env.DOTNET_VERSION }} | |
- name: Build All | |
run: .\build-aspnetcore-build-sln.ps1 -f | |
working-directory: .\build | |
shell: powershell |