From e357020e717f7e6a0b39ad4a05c640fc9b99f60a Mon Sep 17 00:00:00 2001 From: Still Hsu <341464@gmail.com> Date: Wed, 20 Jun 2018 20:03:32 +0800 Subject: [PATCH] Add appveyor.yml --- appveyor.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..3a139c0 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,8 @@ +version: 1.0.-{build} +build: + verbosity: minimal +before_build: +- cmd: dotnet restore +after_build: +- ps: dotnet build -c Release -o "..\output" +- ps: Get-ChildItem output -Recurse -Filter LastModifiedPostProcessor.dll | % { Push-AppveyorArtifact $_.FullName } \ No newline at end of file