Fixed up the rendering for the different controls. #1081
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: Build with Release configuration | |
| on: push | |
| jobs: | |
| Build_Release: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| lfs: 'true' | |
| - name: Setup MSBuild | |
| uses: microsoft/setup-msbuild@v3 | |
| - name: Setup NuGet | |
| uses: nuget/setup-nuget@v3 | |
| - name: Install dependencies | |
| run: nuget restore Source\NostalgicPlayer.sln | |
| - name: Build | |
| run: msbuild Source\NostalgicPlayer.sln -t:rebuild -property:configuration="Release" -property:Platform="Any CPU" | |
| - name: Rename binary directory | |
| run: move Source\Clients\NostalgicPlayer\bin\Release\net* NostalgicPlayer-dev-build-${{github.run_number}} | |
| - name: Create artifacts | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: NostalgicPlayer-dev-build-${{github.run_number}} | |
| path: NostalgicPlayer-dev-build-*\ |