Skip to content

v1.8.8

v1.8.8 #29

Workflow file for this run

name: MSBuild
on:
release:
types: [published]
env:
SOLUTION_FILE_PATH: .
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@v1
- name: Build DLL Win32
run: msbuild -m -target:VietTypeATL:Rebuild -p:Configuration=Release -p:Platform=Win32 .
- name: Build DLL x64
run: msbuild -m -target:VietTypeATL:Rebuild -p:Configuration=Release -p:Platform=x64 .
- name: Build Config
run: msbuild -m -target:VietTypeConfig:Rebuild -p:Configuration=Release -p:Platform=Win32 .
- name: Build Win32
run: msbuild -m -target:VietTypeSetup:Rebuild -p:Configuration=Release -p:Platform=Win32 .
- name: Build x64
run: msbuild -m -target:VietTypeSetup:Rebuild -p:Configuration=Release -p:Platform=x64 .
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3
with:
path: VietTypeSetup/bin/Release/*.msi