Skip to content

Update build.yml

Update build.yml #13

Workflow file for this run

name: Test Build
on:
push
jobs:
build:
runs-on: windows-2019
steps:
- uses: actions/checkout@v3
- name: Add msbuild to PATH
uses: microsoft/[email protected]
#- name: Install
# run: Tools\ci_install.bat
- name: Install .NET FX 3.5
run: Enable-WindowsOptionalFeature -Online -FeatureName "NetFx3"
- name: Install .NET FX 4
run: Enable-WindowsOptionalFeature -Online -FeatureName "NetFx4"
- name: Prepare Build
run: nuget restore -OutputDirectory .\Packages EasyHook.sln
- name: Prepare Build
run: msbuild -m EasyHook.sln
- name: DBG1
run: dir Build/netfx3.5-Debug/x86
- name: DBG
run: dir Build/netfx3.5-Debug/x64