2018-09-11 13:03:20 +00:00
|
|
|
version: x.x.{build}
|
|
|
|
image: Visual Studio 2017
|
|
|
|
configuration: Release
|
|
|
|
before_build:
|
|
|
|
- cmd: appveyor-retry nuget restore
|
|
|
|
build:
|
|
|
|
project: Iced.sln
|
|
|
|
parallel: true
|
|
|
|
verbosity: normal
|
2018-09-11 17:03:48 +00:00
|
|
|
before_package:
|
|
|
|
- cmd: dotnet pack -c Release
|
|
|
|
artifacts:
|
|
|
|
- path: Iced\bin\Release\*.nupkg
|
|
|
|
name: Iced NuGet Packages
|
|
|
|
test_script:
|
2018-09-21 17:01:55 +00:00
|
|
|
- dotnet test -c Release --no-build Iced.UnitTests\Iced.UnitTests.csproj -- RunConfiguration.NoAutoReporters=true
|
2018-09-11 13:03:20 +00:00
|
|
|
notifications:
|
|
|
|
- provider: Email
|
|
|
|
to:
|
|
|
|
- de4dot@gmail.com
|
|
|
|
on_build_success: false
|
|
|
|
on_build_failure: true
|
2018-09-21 17:01:55 +00:00
|
|
|
on_build_status_changed: false
|
|
|
|
deploy:
|
|
|
|
- provider: NuGet
|
|
|
|
on:
|
|
|
|
APPVEYOR_REPO_TAG: true
|
|
|
|
api_key:
|
|
|
|
secure: en/ChGrnyp08i9CgI/8WXLKhl0OHCpPsuBSRv9wt286kvKlI9P4732egbzq+ycfx
|