Skip to content

multiemit on net8 hosted #89

multiemit on net8 hosted

multiemit on net8 hosted #89

Workflow file for this run

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