diff --git a/.travis.yml b/.travis.yml index a73d86c13..832369f4b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -50,11 +50,10 @@ matrix: fast_finish: true include: # We're building ASF with dotnet on latest versions of Linux and OS X - # Ref: https://docs.travis-ci.com/user/ci-environment/#Virtualization-environments - os: linux - # Ref: https://docs.travis-ci.com/user/trusty-ci-environment/ + # Ref: https://docs.travis-ci.com/user/reference/trusty/ dist: trusty sudo: false - os: osx - # Ref: https://docs.travis-ci.com/user/osx-ci-environment/ + # Ref: https://docs.travis-ci.com/user/reference/osx/ osx_image: xcode9 diff --git a/ArchiSteamFarm/CardsFarmer.cs b/ArchiSteamFarm/CardsFarmer.cs index 10287e7ad..e762f9635 100755 --- a/ArchiSteamFarm/CardsFarmer.cs +++ b/ArchiSteamFarm/CardsFarmer.cs @@ -926,7 +926,7 @@ namespace ArchiSteamFarm { case BotConfig.EFarmingOrder.RedeemDateTimesDescending: Dictionary redeemDates = new Dictionary(GamesToFarm.Count); - foreach (Game game in gamesToFarm) { + foreach (Game game in GamesToFarm) { DateTime redeemDate = DateTime.MinValue; if (Program.GlobalDatabase.AppIDsToPackageIDs.TryGetValue(game.AppID, out ConcurrentHashSet packageIDs)) { // ReSharper disable once LoopCanBePartlyConvertedToQuery - C# 7.0 out can't be used within LINQ query yet | https://github.com/dotnet/roslyn/issues/15619 diff --git a/appveyor.yml b/appveyor.yml index 692682e3f..cd238828a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -62,7 +62,7 @@ notifications: { "avatar_url": "https://www.appveyor.com/assets/img/appveyor-logo-256.png", "username": "AppVeyor", - "content": "[{{projectName}}:{{branch}}] {{commitMessage}} - {{committerName}} ({{commitId}}) | **{{status}}** | {{buildUrl}}" + "content": "[{{projectName}}:{{branch}}] {{commitMessage}} - {{committerName}} ({{commitId}}) | {{buildUrl}}/artifacts | **{{status}}**" } on_build_success: true on_build_failure: true