feat: migrate solution file from .sln to .slnx format #22
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 | |
| 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 of setup | |
| run: dotnet restore src\Fischless.Relauncher\Fischless.Relauncher.csproj | |
| - name: Build setup | |
| run: dotnet build src\Fischless.Relauncher\Fischless.Relauncher.csproj --configuration Release --no-restore |