diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..dd60866 --- /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-BoostrapperShell/BootstrapperShell.sln', + '02-Commanding/Commanding.sln', + '03-CompositeCommands/CompositeCommands.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