Skip to content

Commit

Permalink
fix logger cycle releasing [v1.1.1]
Browse files Browse the repository at this point in the history
  • Loading branch information
Sarmiento, Alberto committed Jun 27, 2018
1 parent 993dc26 commit 6a8fc92
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion AutoUpdater.NET/AutoUpdater.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class AutoUpdater
public InitSettings Settings { get; internal set; }
public ILogger Logger
{
get { return _innerLogger; }
get { return _innerLogger.OutterLogger; }
set { _innerLogger.OutterLogger = value; }
}

Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,6 @@ You can even set the path where the default logger will use as storage and if yo
.SetALogger("[your-impl-of-ILogger]")
````

In above example when user press Remind Later button of update dialog, It will remind user for update after 2 days.

### Proxy Server

If your XML and Update file can only be used from certain Proxy Server then you can use following settings to tell AutoUpdater.NET to use that proxy. Currently, if your Changelog URL is also restricted to Proxy server then you should omit changelog tag from XML file cause it is not supported using Proxy Server.
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,14 +79,14 @@ deploy:
skip_symbols: true
artifact: '%my_package_name%.%my_package_version%.nupkg'
- provider: GitHub
release: "'$(my_build_version)'"
release: "$(my_build_version)"
auth_token:
secure: /GyKxy/BoEv0aU75gh8Y4G/QY7L3AnjvS6hezGUrQuqRC+i7yVS1G657HAWcv5xE
artifact: '%my_package_name%-%my_build_version%.zip'
on:
is_prerelease: false
- provider: GitHub
release: "'$(my_build_version)'"
release: "$(my_build_version)"
auth_token:
secure: /GyKxy/BoEv0aU75gh8Y4G/QY7L3AnjvS6hezGUrQuqRC+i7yVS1G657HAWcv5xE
artifact: '%my_package_name%-%my_build_version%.zip'
Expand Down

0 comments on commit 6a8fc92

Please sign in to comment.