Skip to content
This repository was archived by the owner on May 14, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,14 @@
# This pipeline builds the Wpf project, runs unit tests, then saves the MSIX build artifact.
name: Wpf Continuous Integration

# Trigger on every push
on: [push]
# Trigger on every master branch push and pull request
on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:

Expand Down
26 changes: 2 additions & 24 deletions MyWPFApp/MyWPFApp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,31 +9,9 @@
<TargetPlatformMinVersion>10.0.17134.0</TargetPlatformMinVersion>
<StartupObject>MyWPFApp.App</StartupObject>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<PlatformTarget>x64</PlatformTarget>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<PlatformTarget>x64</PlatformTarget>
<PropertyGroup>
<PlatformTarget>$(Platform)</PlatformTarget>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="AppInsights.WindowsDesktop" Version="2.10.55" />
<PackageReference Include="Nerdbank.GitVersioning" Version="3.0.50" PrivateAssets="all" />
Expand Down