-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GUARD-2926-add-shipstation-logging (#10)
* GUARD-2926: add logging prior to throwing ShipStationUnauthorizedException * GUARD-2926: remove duplicate * GUARD-2926 improved logs in the ThrowIfError method, added the logging of the version number (channel name and version moved to the Constants) * GUARD-2926 updated package version * GUARD-2926 updated build.ps1 with correct repositoryUrl * GUARD-2926 renaming PR fixes * GUARD-2926: add truncated key and destruct * GUARD-2926: increment version * GUARD-2926: remove alpha * GUARD-2926: change version --------- Co-authored-by: maxim.saltanov <[email protected]>
- Loading branch information
1 parent
10d57ac
commit bcab09a
Showing
6 changed files
with
48 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,8 @@ _ReSharper*/ | |
[Tt]est[Rr]esult* | ||
*.ReSharper | ||
*.docstates | ||
.idea/ | ||
.vs/ | ||
|
||
#Ignore common build files | ||
build | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
using System.Diagnostics; | ||
using System.Reflection; | ||
|
||
namespace ShipStationAccess | ||
{ | ||
/// <summary> | ||
/// Project-wise constants. | ||
/// </summary> | ||
internal static class Constants | ||
{ | ||
public static readonly string VersionInfo = FileVersionInfo.GetVersionInfo( Assembly.GetExecutingAssembly().Location ).FileVersion; | ||
public const string IntegrationName = "shipstation"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters