forked from xenserver/xenadmin
-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a themed tab control. Added CI to project.
- Loading branch information
1 parent
7be8f35
commit 58e750f
Showing
17 changed files
with
3,231 additions
and
229 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.