diff --git a/ArchiSteamFarm/ArchiSteamFarm.csproj b/ArchiSteamFarm/ArchiSteamFarm.csproj
index 2dc502edf..72e78076a 100644
--- a/ArchiSteamFarm/ArchiSteamFarm.csproj
+++ b/ArchiSteamFarm/ArchiSteamFarm.csproj
@@ -3,14 +3,26 @@
Exe
netcoreapp2.0
- ASF.ico
3.0.0.0
3.0.0.0
+ latest
+ none
+ ASF.ico
Copyright © ArchiSteamFarm 2015-2017
win-x64;linux-x64;osx-x64
ASF is an application that allows you to farm steam cards using multiple steam accounts simultaneously.
+
+ bin\Release\generic\
+ none
+ false
+
+
+
+ bin\Debug\generic\
+
+
diff --git a/appveyor.yml b/appveyor.yml
index b775233b1..b4c026620 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -6,15 +6,40 @@ branches:
- master
skip_branch_with_pr: true
image: Visual Studio 2017 Preview
-environment:
- DOTNET_CLI_TELEMETRY_OPTOUT: true
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
configuration: Release
platform: Any CPU
clone_depth: 10
+environment:
+ DOTNET_CLI_TELEMETRY_OPTOUT: true
+ DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
before_build:
-- dotnet restore
+- cmd: dotnet restore
build:
project: ArchiSteamFarm.sln
parallel: true
verbosity: minimal
+artifacts:
+- path: ArchiSteamFarm\bin\$(CONFIGURATION)\generic
+ name: ASF-generic.zip
+deploy:
+- provider: GitHub
+ tag: $(appveyor_repo_tag_name)
+ release: ArchiSteamFarm V$(appveyor_repo_tag_name)
+ description: '**NOTICE:** Pre-releases are experimental versions that often contain unpatched bugs, work-in-progress features or rewritten implementations. If you don''t consider yourself advanced user, please download **[latest stable release](https://github.com/JustArchi/ArchiSteamFarm/releases/latest)** instead. Pre-release versions are dedicated to users who know how to report bugs, deal with issues and give feedback - no technical support will be given. Check out ASF **[release cycle](https://github.com/JustArchi/ArchiSteamFarm/wiki/Release-cycle)** if you''d like to learn more.\n\n---\n\nThis is automated AppVeyor GitHub deployment, human-readable changelog should be available soon. In the meantime please refer to **[GitHub commits](https://github.com/JustArchi/ArchiSteamFarm/commits/$(appveyor_repo_tag_name))**.\n\n---\n\nASF is available for free. If you''re grateful for what we''re doing, please consider donating. Developing ASF requires massive amount of time and knowledge, especially when it comes to Steam (and its problems). Even 1$ is highly appreciated and shows that you care!\n\n [](https://www.patreon.com/JustArchi) [](https://www.paypal.me/JustArchi/1usd) [](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=HD2P2P3WGS5Y4) [](https://blockchain.info/payment_request?address=1Archi6M1r5b41Rvn1SY2FfJAzsrEUT7aT) [](https://steamcommunity.com/tradeoffer/new/?partner=46697991&token=0ix2Ruv_)'
+ auth_token:
+ secure: QC5gIDMvSpd43EG6qW8d1E3ZHiVU4aR7pbKQonXstjj/JtAABf5S1IbtoY4OsnOR
+ artifact: /.*/
+ draft: true
+ prerelease: true
+ force_update: false
+ on:
+ branch: master
+ configuration: Release
+ appveyor_repo_tag: true
+notifications:
+- provider: Webhook
+ url: https://webhooks.gitter.im/e/6982e3cd9dc9e57b1119
+ method: POST
+ on_build_success: true
+ on_build_failure: true
+ on_build_status_changed: true
\ No newline at end of file