天气组件又在优化调整。调整了噪音监测组件。
This commit is contained in:
lincube
2026-03-04 12:25:07 +08:00
parent 87aece912a
commit 1fad0005bd
5 changed files with 251 additions and 53 deletions

View File

@@ -8,6 +8,7 @@ on:
env:
DOTNET_VERSION: '10.0.x'
Solution_Name: LanMontainDesktop.sln
jobs:
analyze:
@@ -31,10 +32,10 @@ jobs:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Restore
run: dotnet restore
run: dotnet restore ${{ env.Solution_Name }}
- name: Build
run: dotnet build -c Release --no-restore -v minimal
run: dotnet build ${{ env.Solution_Name }} -c Release --no-restore -v minimal
- name: Check formatting
run: dotnet format --verify-no-changes --verbosity diagnostic || true