diff options
| -rw-r--r-- | appveyor.yml | 7 | ||||
| -rw-r--r-- | src/Directory.Build.props | 4 |
2 files changed, 10 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml index d55322da..8d80c6af 100644 --- a/appveyor.yml +++ b/appveyor.yml | |||
| @@ -3,6 +3,11 @@ | |||
| 3 | # Do NOT modify this file. Update the canonical version in Home\repo-template\src\appveyor.yml | 3 | # Do NOT modify this file. Update the canonical version in Home\repo-template\src\appveyor.yml |
| 4 | # then update all of the repos. | 4 | # then update all of the repos. |
| 5 | 5 | ||
| 6 | branches: | ||
| 7 | only: | ||
| 8 | - master | ||
| 9 | - develop | ||
| 10 | |||
| 6 | image: Visual Studio 2017 | 11 | image: Visual Studio 2017 |
| 7 | 12 | ||
| 8 | version: 0.0.0.{build} | 13 | version: 0.0.0.{build} |
| @@ -28,6 +33,8 @@ skip_tags: true | |||
| 28 | artifacts: | 33 | artifacts: |
| 29 | - path: build\Release\**\*.nupkg | 34 | - path: build\Release\**\*.nupkg |
| 30 | name: nuget | 35 | name: nuget |
| 36 | - path: build\Release\**\*.msi | ||
| 37 | name: msi | ||
| 31 | 38 | ||
| 32 | notifications: | 39 | notifications: |
| 33 | - provider: Slack | 40 | - provider: Slack |
diff --git a/src/Directory.Build.props b/src/Directory.Build.props index e853e22d..a22f4470 100644 --- a/src/Directory.Build.props +++ b/src/Directory.Build.props | |||
| @@ -8,6 +8,7 @@ | |||
| 8 | <PropertyGroup> | 8 | <PropertyGroup> |
| 9 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | 9 | <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> |
| 10 | <EnableSourceLink Condition=" '$(NCrunch)' == '1' ">false</EnableSourceLink> | 10 | <EnableSourceLink Condition=" '$(NCrunch)' == '1' ">false</EnableSourceLink> |
| 11 | <MSBuildWarningsAsMessages>MSB3246</MSBuildWarningsAsMessages> | ||
| 11 | 12 | ||
| 12 | <ProjectName Condition=" '$(ProjectName)' == '' ">$(MSBuildProjectName)</ProjectName> | 13 | <ProjectName Condition=" '$(ProjectName)' == '' ">$(MSBuildProjectName)</ProjectName> |
| 13 | <BaseOutputPath>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\build\))</BaseOutputPath> | 14 | <BaseOutputPath>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)..\build\))</BaseOutputPath> |
| @@ -21,6 +22,7 @@ | |||
| 21 | <Product>WiX Toolset</Product> | 22 | <Product>WiX Toolset</Product> |
| 22 | </PropertyGroup> | 23 | </PropertyGroup> |
| 23 | 24 | ||
| 24 | <Import Project="Cpp.Build.props" Condition=" '$(MSBuildProjectExtension)'=='.vcxproj' " /> | 25 | <Import Project="Cpp.Build.props" Condition=" Exists('Cpp.Build.props') And '$(MSBuildProjectExtension)'=='.vcxproj' " /> |
| 26 | <Import Project="Wix.Build.props" Condition=" Exists('Wix.Build.props') And '$(MSBuildProjectExtension)'=='.wixproj' " /> | ||
| 25 | <Import Project="Custom.Build.props" Condition=" Exists('Custom.Build.props') " /> | 27 | <Import Project="Custom.Build.props" Condition=" Exists('Custom.Build.props') " /> |
| 26 | </Project> | 28 | </Project> |
