Skip to content

Compile with MSBuild and VS 2022 for Windows #7

Compile with MSBuild and VS 2022 for Windows

Compile with MSBuild and VS 2022 for Windows #7

Workflow file for this run

on:
workflow_dispatch:
jobs:
compile:
name: Try to compile on windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Add msbuild to PATH
uses: microsoft/[email protected]
# https://github.com/microsoft/setup-msbuild
- name: Run MSBuild
shell: cmd
run: MSBuild.exe build_installer.proj /t:rebuild /p:Configuration=release'
- name: upload output dir
uses: actions/upload-artifact@v3
with:
name: sdna_plus_output
path: output/
retention-days: 5