diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..ec54ef8 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,20 @@ +on: [push] + +jobs: + build: + name: Build the library + runs-on: windows-2019 + steps: + - name: Checkout the source + uses: actions/checkout@v2 + + - name: Build the library + shell: cmd + run: '"%programfiles(x86)%\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\msbuild.exe" /p:Configuration=Release /p:Platform=x64' + + - name: Upload the artifact + uses: actions/upload-artifact@v2 + with: + name: VirtualDesktopAccessor + path: x64/Release/VirtualDesktopAccessor.dll + if-no-files-found: error diff --git a/x64/Release/VirtualDesktopAccessor.dll b/x64/Release/VirtualDesktopAccessor.dll deleted file mode 100644 index d6af0ad..0000000 Binary files a/x64/Release/VirtualDesktopAccessor.dll and /dev/null differ