Skip to content

Reduced Sleep on Insert a bit and added Sleep on remove to fix timing… #12

Reduced Sleep on Insert a bit and added Sleep on remove to fix timing…

Reduced Sleep on Insert a bit and added Sleep on remove to fix timing… #12

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: .NET
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: windows-2019
steps:
- uses: actions/checkout@v3
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v1.3.1
- name: Setup NuGet
uses: NuGet/setup-nuget@v1.2.0
- name: Restore Packages
run: nuget restore MicroSDInstallStatusUpdater.sln
- name: Build solution
run: msbuild MicroSDInstallStatusUpdater.sln -t:rebuild -property:Configuration=Release
- name: Upload artifact
uses: actions/upload-artifact@v3.1.3
with:
name: BUILD
path: "D:\\a\\MicroSDInstallStatusUpdater\\MicroSDInstallStatusUpdater\\bin\\Release\\"