From efecf0a5b989912043908f38907710abb9147110 Mon Sep 17 00:00:00 2001 From: Elias Ruemmler Date: Wed, 9 Jan 2019 16:50:25 +0100 Subject: [PATCH] Setup Appveyor --- README.md | 2 +- appveyor.yml | 35 +++++++++++++++++++++++ {Docu => docs}/NetworkScanner_Screen.png | Bin 3 files changed, 36 insertions(+), 1 deletion(-) create mode 100644 appveyor.yml rename {Docu => docs}/NetworkScanner_Screen.png (100%) diff --git a/README.md b/README.md index e1b86c6..6ca3db5 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ After start, you must select the interface which you want to use. ## Screenshoot -![Screenshoot der Anwendung](Docu/NetworkScanner_Screen.png) +![Screenshoot der Anwendung](docs/NetworkScanner_Screen.png) ## Credits diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..baa0a87 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,35 @@ +version: 1.0.{build} +branches: + only: + - master +skip_tags: true +image: Visual Studio 2017 +configuration: Release +platform: Any CPU +assembly_info: + patch: true + file: '**\AssemblyInfo.cs' + assembly_version: '{version}' + assembly_file_version: '{version}' + assembly_informational_version: '{version}' +skip_commits: + files: + - docs/ + - '**/*.md' + - '*.txt' + - appveyor.yml + - LICENSE.txt + - '.gitignor' +build: + project: NetworkScanner.sln + verbosity: minimal +after_build: +- cmd: 7z a NetworkScanner.zip %APPVEYOR_BUILD_FOLDER%\NetworkScanner\bin\%CONFIGURATION%\*.exe +artifacts: +- path: NetworkScanner.zip +deploy: +- provider: GitHub + description: "`NetworkScanner.zip` contains the application (Hue2Json.exe). You can start the application ´NetworkScanner.exe´ directly without any args." + auth_token: + secure: 9pN0zXgw1jNaPCo0m14eC3+IUZPy/y4zL/kdbdzvcMIDcT1zpkPwYF1LijP5EB+J +prerelease: true \ No newline at end of file diff --git a/Docu/NetworkScanner_Screen.png b/docs/NetworkScanner_Screen.png similarity index 100% rename from Docu/NetworkScanner_Screen.png rename to docs/NetworkScanner_Screen.png