Skip to content

Configure Dependabot for NuGet with daily updates #8

Configure Dependabot for NuGet with daily updates

Configure Dependabot for NuGet with daily updates #8

Workflow file for this run

name: MSBuild
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
PROJECT_FILE_PATH: e2e.vcxproj
BUILD_CONFIGURATION: Release
BUILD_PLATFORM: Win32
permissions:
contents: read
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Add MSBuild to PATH
uses: microsoft/setup-msbuild@v2
- name: Build
working-directory: ${{env.GITHUB_WORKSPACE}}
run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} /p:Platform=${{env.BUILD_PLATFORM}} /p:PlatformToolset=v143 ${{env.PROJECT_FILE_PATH}}
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: e2e-dll-win32
path: |
Release/e2e.dll
e2e.mrc
README.md
LICENSE.txt