Skip to content

Commit

Permalink
Added a themed tab control. Added CI to project.
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-manley committed Feb 9, 2024
1 parent 7be8f35 commit 58e750f
Show file tree
Hide file tree
Showing 17 changed files with 3,231 additions and 229 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/test-builds.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Test Builds

on:
workflow_dispatch:
push:
branches: [ development ]
pull_request:
branches: [ development ]

jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v1
- name: Setup NuGet
uses: NuGet/setup-nuget@v1.0.5
- name: setup-msbuild
uses: microsoft/setup-msbuild@v1.1
- name: Restore Packages
run: nuget restore MySolution.sln
- name: Build Release solution
run: msbuild XenAdmin.sln -property:Configuration=Debug
- name: Build Debug solution
run: msbuild XenAdmin.sln -property:Configuration=Release
- name: Upload Release Artifacts
uses: actions/upload-artifact@v4
with:
name: drop-release
path: XenAdmin/bin/Release/net481
- name: Upload Debug Artifacts
uses: actions/upload-artifact@v4
with:
name: drop-debug
path: XenAdmin/bin/Debug/net481
Loading

0 comments on commit 58e750f

Please sign in to comment.