multiemit on net8 hosted #89
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 for Standalone and Hosting | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v5 | |
| with: | |
| dotnet-version: '10.x' | |
| - name: Build FeshHosting.fsproj | |
| run: dotnet build FeshHosting.fsproj --configuration Release | |
| # make sure to match release.yml | |
| - name: Run dotnet publish net48 | |
| run: | | |
| dotnet publish FeshStandalone.fsproj ` | |
| --configuration Release ` | |
| --runtime win-x64 ` | |
| --framework net48 ` | |
| --no-self-contained | |
| - name: Run dotnet publish net10.0 | |
| run: | | |
| dotnet publish FeshStandalone.fsproj ` | |
| --configuration Release ` | |
| --runtime win-x64 ` | |
| --framework net10.0-windows ` | |
| --no-self-contained | |