From daa0a0a01ff66c510219d950f12d594fc0dfbc89 Mon Sep 17 00:00:00 2001 From: Dan Siegel Date: Sat, 28 Oct 2023 09:33:40 -0600 Subject: [PATCH] chore: adding ci build --- .github/workflows/ci.yml | 21 +++++++++++++++++++++ Directory.Build.props | 5 +++++ Directory.Build.targets | 3 --- Directory.Packages.props | 14 ++++++++++++++ Packages.props | 14 -------------- 5 files changed, 40 insertions(+), 17 deletions(-) create mode 100644 .github/workflows/ci.yml create mode 100644 Directory.Build.props delete mode 100644 Directory.Build.targets create mode 100644 Directory.Packages.props delete mode 100644 Packages.props diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..002063e --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,21 @@ +name: build_wpf_samples + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build-sample: + strategy: + matrix: + solution-path: [ + '01-BootstrapperShell/BootstrapperShell.sln', + '02-Regions/Regions.sln', + '03-CustomRegions/Regions.sln' + ] + uses: avantipoint/workflow-templates/.github/workflows/dotnet-build.yml@master + with: + name: Build Bootstrapper Shell + solution-path: ${{ matrix.solution-path }} \ No newline at end of file diff --git a/Directory.Build.props b/Directory.Build.props new file mode 100644 index 0000000..9a7757c --- /dev/null +++ b/Directory.Build.props @@ -0,0 +1,5 @@ + + + true + + \ No newline at end of file diff --git a/Directory.Build.targets b/Directory.Build.targets deleted file mode 100644 index 40ec7a9..0000000 --- a/Directory.Build.targets +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/Directory.Packages.props b/Directory.Packages.props new file mode 100644 index 0000000..6cc7795 --- /dev/null +++ b/Directory.Packages.props @@ -0,0 +1,14 @@ + + + + 9.0.271-pre + + + + + + + + + + \ No newline at end of file diff --git a/Packages.props b/Packages.props deleted file mode 100644 index 5980b7b..0000000 --- a/Packages.props +++ /dev/null @@ -1,14 +0,0 @@ - - - - 8.0.0.1909 - - - - - - - - - - \ No newline at end of file