Skip to content
This repository was archived by the owner on Apr 22, 2026. It is now read-only.

feat: replace .sln with XML .slnx solution file #33

feat: replace .sln with XML .slnx solution file

feat: replace .sln with XML .slnx solution file #33

Workflow file for this run

name: build
on:
release:
types: [created]
push:
branches:
- master
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 10.0.x
- name: Install dependencies
run: dotnet restore NotifyIcon
- name: Build
run: dotnet build NotifyIcon --configuration Release --no-restore
- name: Pack
run: dotnet pack NotifyIcon\NotifyIcon.csproj -c Release --no-build -o out
- name: Push NuGet package
# run: dotnet nuget push "out\*.nupkg" -k ${{secrets.NUGET_AUTH_TOKEN}} --source https://api.nuget.org/v3/index.json
uses: actions/upload-artifact@v4
with:
name: nuget-packages
path: out/*.nupkg