Skip to content

Commit

Permalink
chore: adding ci build
Browse files Browse the repository at this point in the history
  • Loading branch information
dansiegel committed Oct 28, 2023
1 parent 706e65c commit 2cfee06
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 17 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -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 }}
5 changes: 5 additions & 0 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<Project>
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
</Project>
3 changes: 0 additions & 3 deletions Directory.Build.targets

This file was deleted.

14 changes: 14 additions & 0 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<Project>

<PropertyGroup>
<PrismVersion>9.0.271-pre</PrismVersion>
</PropertyGroup>

<ItemGroup>
<PackageVersion Update="Prism.Core" Version="$(PrismVersion)" />
<PackageVersion Update="Prism.Wpf" Version="$(PrismVersion)" />
<PackageVersion Update="Prism.DryIoc" Version="$(PrismVersion)" />
<PackageVersion Update="Prism.Unity" Version="$(PrismVersion)" />
</ItemGroup>

</Project>
14 changes: 0 additions & 14 deletions Packages.props

This file was deleted.

0 comments on commit 2cfee06

Please sign in to comment.