Fix icons being bigger in 3.0.0 #70
Workflow file for this run
This file contains hidden or 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: .NET Build on PR | |
| on: | |
| pull_request: | |
| 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 | |
| - name: Setup Windows SDK 10.0.18362.0 | |
| uses: GuillaumeFalourd/setup-windows10-sdk-action@v2 | |
| with: | |
| sdk-version: 18362 | |
| - name: Build and Pack | |
| run: | | |
| dotnet build Material.Icons -c Release /p:Platform="Any CPU" | |
| dotnet build Material.Icons.WPF -c Release /p:Platform="Any CPU" | |
| dotnet build Material.Icons.Avalonia -c Release /p:Platform="Any CPU" | |
| dotnet build Material.Icons.WinUI3 -c Release /p:Platform="Any CPU" |