Skip to content

Remove atlcomcli.h include #22

Remove atlcomcli.h include

Remove atlcomcli.h include #22

Workflow file for this run

name: MSBuild
on: [push]
env:
# Path to the solution file relative to the root of the project.
SOLUTION_FILE_PATH: .
# Configuration type to build.
# You can convert this to a build matrix if you need coverage of multiple configuration types.
# https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
# BUILD_CONFIGURATION: Release
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Add MSBuild to PATH
uses: microsoft/[email protected]
- name: Build (Debug)
working-directory: ${{env.GITHUB_WORKSPACE}}
# Add additional options to the MSBuild command line here (like platform or verbosity level).
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
run: msbuild /m /p:Configuration=Debug ${{env.SOLUTION_FILE_PATH}}
- name: Build (Release)
working-directory: ${{env.GITHUB_WORKSPACE}}
# Add additional options to the MSBuild command line here (like platform or verbosity level).
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
run: msbuild /m /p:Configuration=Release ${{env.SOLUTION_FILE_PATH}}
- name: Upload artifact ddb_smtc_debug.zip
uses: actions/upload-artifact@v2
with:
name: ddb_smtc_debug
path: ./x64/Debug/ddb_smtc.dll
- name: Upload artifact ddb_smtc.zip
uses: actions/upload-artifact@v2
with:
name: ddb_smtc
path: ./x64/Release/ddb_smtc.dll